Skip to content

Limarta/beta bug #3

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

Open
wants to merge 2 commits into
base: pure-jax
Choose a base branch
from
Open

Limarta/beta bug #3

wants to merge 2 commits into from

Conversation

limarta
Copy link
Contributor

@limarta limarta commented Oct 17, 2024

This PR corrects the GEM's logpdf by solving for the correct beta values.

Fixes https://linear.app/chi-fro/issue/EXPERT-62/formula-for-beta-values-incorrect

Copy link

linear bot commented Oct 17, 2024

EXPERT-62 Formula for `beta` values incorrect?

In logpdf here, passing weights can sometimes produce negative beta values which is outside of the range [0,1]. This line seems responsible:

 betas = jax.vmap(lambda i: 1 - pi[i] / pi[i-1])(jnp.arange(len(pi)))

It isn't clear to me that when given a pi, the beta values can be solved for in parallel (e.g. vmap), so instead we use a lax.scan:

def recover(carry, x):
  beta = x / carry
  return carry * (1-beta), beta

jax.lax.scan(recover, 1.0, weights)

Timeline: Get it merged end of week.

@limarta
Copy link
Contributor Author

limarta commented Dec 6, 2024

@Joaoloula When you have a chance, could you confirm that the beta values are calculated here correctly? I think this may need to be fixed in the pure jax branch as well.

@limarta limarta marked this pull request as ready for review December 6, 2024 21:12
@limarta limarta changed the base branch from main to pure-jax February 11, 2025 17:44
Copy link

gitstream-cm bot commented Feb 11, 2025

🥷 Code experts: Joaoloula, Schaechtle

Schaechtle has most 👩‍💻 activity in the files.
Joaoloula has most 🧠 knowledge in the files.

See details

pyproject.toml

Activity based on git-commit:

Schaechtle
FEB
JAN
DEC
NOV
OCT 1 additions & 0 deletions
SEP

Knowledge based on git-blame:
Joaoloula: 93%

requirements-dev.lock

Activity based on git-commit:

Schaechtle
FEB
JAN
DEC
NOV
OCT 2 additions & 0 deletions
SEP

Knowledge based on git-blame:
Joaoloula: 63%

requirements.lock

Activity based on git-commit:

Schaechtle
FEB
JAN
DEC
NOV
OCT 2 additions & 0 deletions
SEP

Knowledge based on git-blame:
Joaoloula: 63%

src/genspn/distributions.py

Activity based on git-commit:

Schaechtle
FEB
JAN
DEC
NOV
OCT 62 additions & 51 deletions
SEP

Knowledge based on git-blame:
Joaoloula: 66%

test/test_score.py

Activity based on git-commit:

Schaechtle
FEB
JAN
DEC
NOV
OCT 28 additions & 33 deletions
SEP

Knowledge based on git-blame:
Joaoloula: 79%

To learn more about /:\ gitStream - Visit our Docs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant