osf-rs 0.0.1

OSF Sleep Foundation Model — inference in Rust with Burn ML
Documentation
1
2
3
4
5
6
7
8
9
/// Placeholder — use the Python script `scripts/export_safetensors.py`
/// to convert osf_backbone.pth → osf_backbone.safetensors.

fn main() {
    eprintln!("Use the Python script to export weights:");
    eprintln!("  python scripts/export_safetensors.py \\");
    eprintln!("    --input ../OSF-Base/osf_backbone.pth \\");
    eprintln!("    --output data/osf_backbone.safetensors");
}