torsh-models 0.1.1

Pre-trained models and model zoo for ToRSh deep learning framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Simple syntax test for the new modules

mod quantization;
mod surgery;
mod ensembling;

use quantization::*;
use surgery::*;
use ensembling::*;

fn main() {
    println!("Syntax check passed!");
}