Skip to content

Commit

Permalink
Run formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
pawel-czyz committed Feb 23, 2024
1 parent d20c99c commit 4bffd89
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions tests/logistic/test_logreg.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for the logistic regression."""

import jax.numpy as jnp

import jnotype.logistic.logreg as lr
Expand Down
4 changes: 1 addition & 3 deletions tests/logistic/test_polyagamma.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,7 @@ def test_sample_coefficients_nontrivial_structure(
]
)

prior_variance = jnp.asarray(
[[0.6, 0.02**2], [0.03**2, 0.5], [0.04**2, 0.05**2]]
)
prior_variance = jnp.asarray([[0.6, 0.02**2], [0.03**2, 0.5], [0.04**2, 0.05**2]])

current_coefficients = jnp.zeros_like(true_coefficients)

Expand Down
1 change: 1 addition & 0 deletions tests/test_csp.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests of the cumulative shrinkage prior (CSP) module."""

import jax
import jax.numpy as jnp
from jax import random
Expand Down
1 change: 1 addition & 0 deletions tests/test_install.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Simplest installation test."""

from types import ModuleType


Expand Down

0 comments on commit 4bffd89

Please sign in to comment.