summaryrefslogtreecommitdiff
path: root/candle-transformers/src/models/eva2.rs
diff options
context:
space:
mode:
authorzachcp <zachcp@users.noreply.github.com>2024-11-17 14:27:24 -0500
committerGitHub <noreply@github.com>2024-11-17 20:27:24 +0100
commit12d7e7b1450f0c3f87c3cce3a2a1dd1674cb8fd7 (patch)
tree0d0b59c5538f1a61b6e9022b1bb7b39b6834db5d /candle-transformers/src/models/eva2.rs
parenta3f200e36991418c25cddef0e09c426deea90606 (diff)
downloadcandle-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/eva2.rs')
-rw-r--r--candle-transformers/src/models/eva2.rs28
1 files changed, 25 insertions, 3 deletions
diff --git a/candle-transformers/src/models/eva2.rs b/candle-transformers/src/models/eva2.rs
index ee84cca4..9e31f58c 100644
--- a/candle-transformers/src/models/eva2.rs
+++ b/candle-transformers/src/models/eva2.rs
@@ -1,9 +1,31 @@
//! EVA-2 inference implementation.
//!
-//! See ["EVA-02: A Visual Representation for Neon Genesis"](https://arxiv.org/abs/2303.11331)
+//! EVA-02 is a computer vision model that can be used as an ImageNet classifier.
+//! The model returns the probability for an image to belong to each of the 1000
+//! ImageNet categories.
+//!
+//! - [Paper](https://arxiv.org/abs/2303.11331). EVA-02: A Visual Representation for Neon Genesis
+//! - [Code](https://github.com/huggingface/pytorch-image-models/blob/main/timm/models/eva2.py)
+//!
+//! # Example
+//!
+//! ```bash
+//! cargo run \
+//! --example eva2 \
+//! --release -- \
+//! --image candle-examples/examples/yolo-v8/assets/bike.jpg
+//!
+//! > mountain bike, all-terrain bike, off-roader: 37.09%
+//! > maillot : 8.30%
+//! > alp : 2.13%
+//! > bicycle-built-for-two, tandem bicycle, tandem: 0.84%
+//! > crash helmet : 0.73%
+//! ```
+//!
+//! <div align=center>
+//! <img src="https://github.com/huggingface/candle/raw/main/candle-examples/examples/yolo-v8/assets/bike.jpg" alt="" width=640>
+//! </div>
//!
-//! Based on implementation from [pytorch-image-models](https://github.com/huggingface/pytorch-image-models/blob/main/timm/models/eva2.py)
-
use candle::{IndexOp, Result, Tensor, D};
use candle_nn::{layer_norm, LayerNorm, Linear, Module, VarBuilder};