mirror of
https://github.com/huggingface/candle.git
synced 2025-06-14 09:57:10 +00:00
63 lines
1.7 KiB
Rust
63 lines
1.7 KiB
Rust
//! DINOv2: Learning Robust Visual Features without Supervision
|
|
//! https://github.com/facebookresearch/dinov2
|
|
|
|
#[cfg(feature = "mkl")]
|
|
extern crate intel_mkl_src;
|
|
|
|
#[cfg(feature = "accelerate")]
|
|
extern crate accelerate_src;
|
|
|
|
use clap::Parser;
|
|
|
|
use candle::{DType, IndexOp, D};
|
|
use candle_nn::{Module, VarBuilder};
|
|
use candle_transformers::models::dinov2;
|
|
|
|
#[derive(Parser)]
|
|
struct Args {
|
|
#[arg(long)]
|
|
model: Option<String>,
|
|
|
|
#[arg(long)]
|
|
image: String,
|
|
|
|
/// Run on CPU rather than on GPU.
|
|
#[arg(long)]
|
|
cpu: bool,
|
|
}
|
|
|
|
pub fn main() -> anyhow::Result<()> {
|
|
let args = Args::parse();
|
|
|
|
let device = candle_examples::device(args.cpu)?;
|
|
|
|
let image = candle_examples::imagenet::load_image224(args.image)?.to_device(&device)?;
|
|
println!("loaded image {image:?}");
|
|
|
|
let model_file = match args.model {
|
|
None => {
|
|
let api = hf_hub::api::sync::Api::new()?;
|
|
let api = api.model("lmz/candle-dino-v2".into());
|
|
api.get("dinov2_vits14.safetensors")?
|
|
}
|
|
Some(model) => model.into(),
|
|
};
|
|
let vb = unsafe { VarBuilder::from_mmaped_safetensors(&[model_file], DType::F32, &device)? };
|
|
let model = dinov2::vit_small(vb)?;
|
|
println!("model built");
|
|
let logits = model.forward(&image.unsqueeze(0)?)?;
|
|
let prs = candle_nn::ops::softmax(&logits, D::Minus1)?
|
|
.i(0)?
|
|
.to_vec1::<f32>()?;
|
|
let mut prs = prs.iter().enumerate().collect::<Vec<_>>();
|
|
prs.sort_by(|(_, p1), (_, p2)| p2.total_cmp(p1));
|
|
for &(category_idx, pr) in prs.iter().take(5) {
|
|
println!(
|
|
"{:24}: {:.2}%",
|
|
candle_examples::imagenet::CLASSES[category_idx],
|
|
100. * pr
|
|
);
|
|
}
|
|
Ok(())
|
|
}
|