Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
f3439e0
Revert "chore: drop committed coverage and metrics"
absternator Jul 6, 2026
90378e8
fix: update minimum prevalence filter to 0.01 and adjust assertions a…
absternator Jul 6, 2026
7d037e8
update to correct data preprocessing
absternator Jul 6, 2026
d3f9d70
update data loading
absternator Jul 8, 2026
7ba02b4
feat: consolidate "replace XGBoost" findings into a single test file …
absternator Jul 10, 2026
19d5e2a
get working umnn
absternator Jul 13, 2026
65173d4
get rqs v1
absternator Jul 14, 2026
5aaeec5
cleanup rqs logic
absternator Jul 14, 2026
900a047
get working version
absternator Jul 15, 2026
bfb2459
Refactor training configuration and remove obsolete test file
absternator Jul 15, 2026
9806997
Refactor model artifacts and update training functions to use new cla…
absternator Jul 15, 2026
d071554
remove bad code and fix rqs
absternator Jul 15, 2026
7b1a9c5
Refactor checkpointing in training process and add sweep configuration
absternator Jul 16, 2026
75588fd
fix checkpointing dir
absternator Jul 16, 2026
3ac2fdd
refactor + remove umnn
absternator Jul 17, 2026
d1e2b51
feat: Introduce model configuration and feature handling for RQS trai…
absternator Jul 17, 2026
d0dd8e3
changes to config
absternator Jul 17, 2026
923a369
Add model export functionality and sweep configuration for HBR EIR
absternator Aug 5, 2026
fb49413
fix: remove .log from .gitignore to clean up ignored files
absternator Aug 6, 2026
9ccb0cd
tests + scaler updates
absternator Aug 7, 2026
2f71f87
save conformal so can be used by hf loaded weights
absternator Aug 7, 2026
1313eb3
random
absternator Aug 7, 2026
b42665a
remove: delete unused random.py file
absternator Aug 7, 2026
bf99fa0
get working with scenarios
absternator Aug 13, 2026
cc8f23c
Bump version to 1.6.4 and update dependencies
absternator Aug 13, 2026
f6a0f54
Remove outdated metric CSV files for HBR and prevalence models, inclu…
absternator Aug 13, 2026
43e1a19
Update project installation step to include extra scenarios for testing
absternator Aug 13, 2026
ea79df2
remove all related to old xgboost
absternator Aug 13, 2026
4a74097
Implement code changes to enhance functionality and improve performance
absternator Aug 13, 2026
d035c90
Refactor test cases in test_estimint.py for improved readability and …
absternator Aug 13, 2026
1ad2124
easy pr changes
absternator Aug 14, 2026
8cf0906
Refactor loss functions and training steps to support weighted losses…
absternator Aug 16, 2026
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: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install project
run: uv sync --locked
run: uv sync --locked --extra train --extra scenarios

- name: Run tests
run: uv run pytest
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,28 @@ uv.lock
# Training outputs
output/
scripts/output/
*logs/
wandb/

# Model training artifacts (regenerable; shipped copies live in src/estimint/data/)
models/**/*.parquet
models/**/*.pkl
models/**/*.model
models/**/plots/

models/**/metrics/

# Test / coverage
.coverage
.coverage.*
htmlcov/
.pytest_cache/
train_outputs/
outputs/
*.out
test.ipynb
artifacts/
datasets/
# Miscellaneous
*.log
slurm.sh
Loading