Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
6b2ee0b
Fix warnings, bug in visual...
isaacrobinson2000 Apr 8, 2026
67a1100
Fix index page html.
isaacrobinson2000 Apr 8, 2026
c2bf764
Further index page fixes.
isaacrobinson2000 Apr 8, 2026
32e8d23
Gather basic global trace statistics.
isaacrobinson2000 Apr 9, 2026
e62c280
New statistics module, incorperating into linking...
isaacrobinson2000 Apr 16, 2026
decf232
Fix errors.
isaacrobinson2000 Apr 17, 2026
2a39a85
remove unused imports
isaacrobinson2000 Apr 18, 2026
6ce0e30
New target scoring scheme is done, also added unexplained base removal.
isaacrobinson2000 Apr 21, 2026
cf319e3
Remove unexplained gaps.
isaacrobinson2000 Apr 21, 2026
4aab08d
Fix reading of bed files.
isaacrobinson2000 Apr 30, 2026
03c24b4
Add divergence calculation for segments,
isaacrobinson2000 Apr 30, 2026
8ba72eb
move consensus distance out into it's own function.
isaacrobinson2000 May 1, 2026
75a319a
Work on stat extraction from aurora.
isaacrobinson2000 May 1, 2026
4ce5845
Work on parameter analysis for
isaacrobinson2000 May 5, 2026
b3fc5e0
Further exploration of join distributions.
isaacrobinson2000 May 5, 2026
0d2bba6
Join estimation WIP
isaacrobinson2000 May 6, 2026
0601c8b
WIP Half t distribution.
isaacrobinson2000 May 8, 2026
597a260
Init impl of HalfT, needs testing...
isaacrobinson2000 May 8, 2026
daa1953
Start adding tests for distributions.
isaacrobinson2000 May 8, 2026
a0236ac
P2 Estimator wip for doing quantile estimators.
isaacrobinson2000 May 12, 2026
aba5104
Init p2 est done..
isaacrobinson2000 May 12, 2026
88c0a9f
First refactor with new scoring done...
isaacrobinson2000 May 14, 2026
a8e923c
Target distance and divergence bayesian scoring working...
isaacrobinson2000 May 14, 2026
88dabb8
Bug fix: properly adjust history when join
isaacrobinson2000 May 19, 2026
8a3e268
Tested est for frechet, stinks so temp disabled.
isaacrobinson2000 May 21, 2026
c065af2
WIP on quantile estimator.
isaacrobinson2000 May 22, 2026
9c261d3
New quantile estimator updates done.
isaacrobinson2000 May 23, 2026
958b3da
More work on quantile estimation.
isaacrobinson2000 May 23, 2026
44fde42
Quantile est working, need to fix merging.
isaacrobinson2000 May 27, 2026
117fcfc
Final touches on quantile estimator...
isaacrobinson2000 May 27, 2026
1a3b165
Better fretchet fitting, need to test..
isaacrobinson2000 May 28, 2026
2f7c9f5
Test gumbel...
isaacrobinson2000 May 28, 2026
52dc778
Normalize by consensus.
isaacrobinson2000 May 29, 2026
bce495e
New version working...
isaacrobinson2000 Jun 3, 2026
22654e4
Overhaul table viz to work better with very large runs.
isaacrobinson2000 Jun 3, 2026
5e40974
Clean up implementation...
isaacrobinson2000 Jun 4, 2026
06923ff
Enhance statistics displayed on
isaacrobinson2000 Jun 4, 2026
d678818
Parameter tuning...
isaacrobinson2000 Jun 5, 2026
9175b6a
Better error handling.
isaacrobinson2000 Jun 9, 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
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,6 @@ Cargo.lock

# Visuals generated by aurora...
/viz/
out.txt

# Temporary output files...
/out*.txt
16 changes: 16 additions & 0 deletions .zed/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// Folder-specific settings
//
// For a full list of overridable settings, and general information on folder-specific settings,
// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
{
"terminal": {
"detect_venv": {
"on": {
"directories": [
".venv"
],
"activate_script": "default"
}
}
}
}
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ serde_json = "1.0.93"
itertools = "0.11.0"
rayon = "1.8.0"
base64 = "0.22.1"
puruspe = "0.4.4"

[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = "0.5"
Expand All @@ -29,3 +30,5 @@ lto = "thin"
codegen-units = 1
debug = false

[dev-dependencies]
rand = "0.10.1"
Loading