diff options
author | zachcp <zachcp@users.noreply.github.com> | 2024-11-17 14:27:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-17 20:27:24 +0100 |
commit | 12d7e7b1450f0c3f87c3cce3a2a1dd1674cb8fd7 (patch) | |
tree | 0d0b59c5538f1a61b6e9022b1bb7b39b6834db5d /candle-transformers/src/models/dinov2reg4.rs | |
parent | a3f200e36991418c25cddef0e09c426deea90606 (diff) | |
download | candle-12d7e7b1450f0c3f87c3cce3a2a1dd1674cb8fd7.tar.gz candle-12d7e7b1450f0c3f87c3cce3a2a1dd1674cb8fd7.tar.bz2 candle-12d7e7b1450f0c3f87c3cce3a2a1dd1674cb8fd7.zip |
More Model Module Docs (#2623)
* dinov2
* add another example
* ad dinov2reg4
* eva2
* efficientvit
* moondream
* update t5
* update t5
* rwkv
* stable diffusion docs
* add wasm link
* add segment_anything
* adjsut for clippy
* ignore bertdoc
* dinov2 ignore
* update block to be text
* remove the rust blocks for the moment
* bump python to 3.11
* add a setup-python step
* add py311 to test as well
Diffstat (limited to 'candle-transformers/src/models/dinov2reg4.rs')
-rw-r--r-- | candle-transformers/src/models/dinov2reg4.rs | 31 |
1 files changed, 28 insertions, 3 deletions
diff --git a/candle-transformers/src/models/dinov2reg4.rs b/candle-transformers/src/models/dinov2reg4.rs index 0d2320e1..549f2c3c 100644 --- a/candle-transformers/src/models/dinov2reg4.rs +++ b/candle-transformers/src/models/dinov2reg4.rs @@ -1,9 +1,34 @@ //! Implementation of the DINOv2 revision (4 regularization) //! -//! See: -//! - DINOv2: ["DINOv2: Learning Robust Visual Features without Supervision"](https://github.com/facebookresearch/dinov2) +//! The DINOv2-reg4 model is a variant of DINOv2 that adds 4 regularization tokens to the +//! original architecture. This implementation is specifically trained for plant species +//! classification on the PlantCLEF2024 dataset with 7,806 classes. //! -//! This code implements the regularization tokens version with 4 regularization tokens. +//! - [Paper](https://arxiv.org/abs/2309.16588). DINOv2: Learning Robust Visual Features without Supervision +//! - [GH Repo](https://github.com/facebookresearch/dinov2) +//! +//! # Example +//! +//! ```bash +//! # Download classes names and a plant picture to identify +//! # see candle/examples/dinov2reg4 for full code. +//! +//! # Perform inference +//! cargo run \ +//! --example dinov2reg4 \ +//! --release -- \ +//! --image <orchid-file> +//! +//! > Orchis simia Lam. : 45.55% +//! > Orchis × bergonii Nanteuil: 9.80% +//! > Orchis italica Poir. : 9.66% +//! > Orchis × angusticruris Franch.: 2.76% +//! > Orchis × bivonae Tod. : 2.54% +//! ``` +//! +//! <div align=center> +//! <img src="https://bs.plantnet.org/image/o/bd2d3830ac3270218ba82fd24e2290becd01317c" alt="" width=320> +//! </div> //! use candle::{IndexOp, Result, Tensor, D}; use candle_nn::{layer_norm, LayerNorm, Linear, Module, VarBuilder}; |