-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
[bug] Load of results from RVFWHMmodel is broken #24
Comments
Can you check if this is still causing an error with the current version on |
The new version does not even run the RVFWHM model with the default configurations model = RVFWHMmodel(
fix=fix,
npmax=NPmax,
data=data,
)
model.enforce_stability = True
model.trend = True
model.degree = 1
kima.run(
model,
steps=n_steps,
num_threads=30,
new_level_interval=4000,
) This fails with (venv) ➜ EpsIndi python kima_runs/apply_kima.py
# Seeding random number generators. First seed = 1736503611.
# Generating 30 particles from the prior...Traceback (most recent call last):
File "/home/amiguel/RV_analysis/EpsIndi/kima_runs/apply_kima.py", line 98, in <module>
run_kima(
~~~~~~~~^
(results_path / "jointModel").as_posix(),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...<6 lines>...
run_joint_model=True,
^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/amiguel/RV_analysis/EpsIndi/kima_runs/apply_kima.py", line 84, in run_kima
kima.run(
~~~~~~~~^
model,
^^^^^^
...<2 lines>...
new_level_interval=4000,
^^^^^^^^^^^^^^^^^^^^^^^^
)
^
ValueError: LogUniform distribution must have lower < upper limits I can't seem to find which prior is setting the LogUniform distribution with the incorrect parameters, as a breakpoint() before the kima.run shows all priors to be None |
This is probably coming from the default prior for |
Hi,
I am trying to load kima products using the following MWE
It is failing with
The text was updated successfully, but these errors were encountered: