encoderfile 0.1.0-rc.17

Distribute and run transformer encoders with a single file.
Documentation
1
2
3
4
5
6
7
8
use anyhow::Result;
use clap::Parser;

fn main() -> Result<()> {
    let cli = encoderfile::cli::Cli::parse();

    cli.command.run()
}