Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions lifejacket/post_deployment_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@
level=logging.INFO,
)

jax.config.update("jax_enable_x64", True)


@click.group()
def cli():
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "lifejacket"
version = "1.1.0"
version = "1.2.0"
description = "Consistent standard errors for longitudinal data collected under pooling online decision policies."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion tests/unit_tests/test_post_deployment_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -2935,7 +2935,7 @@ def test_construct_single_user_weighted_estimating_function_stacker_use_action_p
jnp.mean(
jnp.array([expected_weighted_stack_1, expected_weighted_stack_2]), axis=0
),
rtol=1e-5,
rtol=1e-6,
)
np.testing.assert_array_equal(
result[1][0],
Expand Down
2 changes: 1 addition & 1 deletion tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def assert_real_run_output_as_expected(test_file_path, relative_path_to_output_d
np.testing.assert_allclose(
observed_debug_pieces_dict["joint_meat_matrix"],
expected_debug_pieces_dict["joint_meat_matrix"],
rtol=1e-3,
rtol=6e-4,
)
np.testing.assert_allclose(
observed_debug_pieces_dict["raw_joint_bread_matrix"],
Expand Down