Multi-labels anime image classification without python.
```rust, ignore
predictbydanbooru2021(&modelpath, &imagepath) ```
rust, ignore
let runtime = Arc::new(Environment::builder().build()?);
let mut model = DeepDanbooru::new(&runtime, model.as_ref())?;
model.set_tags(TAGS2021);
let image = Reader::open(image.as_ref()).unwrap().decode().unwrap();
let result = model.predict(&image).unwrap();