We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I ran into a couple of errors in derivative.py trying to fit for scattering
derivative.py
a) deriv_model_wrt_scattering_index I'm not sure these two lines https://github.com/CHIMEFRB/fitburst/blame/57a86a8ae747b08071be4e4ab3f76f325294a293/fitburst/routines/derivative.py#L747-L748 need to exist since spectrum is overwritten immediately below? If they are needed then line 747 throws a couple of NameErrors
deriv_model_wrt_scattering_index
spectrum
NameError
I think you also need to add
burst_width = parameters["burst_width"][component]
or something similar since burst_width throws a NameError too.
burst_width
b) deriv2_model_wrt_burst_width_scattering_index log_freq = np.log_freq_ratio -> log_freq = np.log(freq_ratio)
deriv2_model_wrt_burst_width_scattering_index
log_freq = np.log_freq_ratio
log_freq = np.log(freq_ratio)
The text was updated successfully, but these errors were encountered:
this has been fixed in #84.
Sorry, something went wrong.
No branches or pull requests
I ran into a couple of errors in
derivative.py
trying to fit for scatteringa)
deriv_model_wrt_scattering_index
I'm not sure these two lines https://github.com/CHIMEFRB/fitburst/blame/57a86a8ae747b08071be4e4ab3f76f325294a293/fitburst/routines/derivative.py#L747-L748 need to exist since
spectrum
is overwritten immediately below? If they are needed then line 747 throws a couple ofNameError
sI think you also need to add
or something similar since
burst_width
throws aNameError
too.b)
deriv2_model_wrt_burst_width_scattering_index
log_freq = np.log_freq_ratio
->log_freq = np.log(freq_ratio)
The text was updated successfully, but these errors were encountered: