NousResearch/wandb-rs
Rust
Captured source
source ↗published Oct 26, 2024seen 5dcaptured 13hhttp 200method plain
NousResearch/wandb-rs
Language: Rust
Stars: 16
Forks: 2
Open issues: 0
Created: 2024-10-26T03:12:43Z
Pushed: 2026-02-24T15:22:31Z
Default branch: main
Fork: no
Archived: no
README:
Weights & Biases for Rust
Simple run creation & logging implemented!
let wandb = WandB::new(BackendOptions::new(api_key));
let run = wandb
.new_run(
RunInfo::new("wandb-rs")
.entity("nous_research")
.name("node-25")
.build()?,
)
.await?;
for i in 0..100 {
run.log((("_step", i), ("loss", 1.0 / (i as f64).sqrt())))
.await;
}see examples/test.rs for an example :)
Notability
notability 2.0/10Low-star routine repo