aprender-core 0.29.1

Next-generation machine learning library in pure Rust
1
2
3
4
5
6
7
use super::HfHubClient;

impl Default for HfHubClient {
    fn default() -> Self {
        Self::new().expect("Failed to create HfHubClient")
    }
}