diff options
Diffstat (limited to 'candle-transformers/src/models/blip_text.rs')
-rw-r--r-- | candle-transformers/src/models/blip_text.rs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/candle-transformers/src/models/blip_text.rs b/candle-transformers/src/models/blip_text.rs index aceaf4ac..ad28193b 100644 --- a/candle-transformers/src/models/blip_text.rs +++ b/candle-transformers/src/models/blip_text.rs @@ -1,9 +1,12 @@ //! Implementation of BLIP text encoder/decoder. //! -//! See "BLIP: Bootstrapping Language-Image Pre-training for Unified Vision-Language Understanding and Generation" -//! https://arxiv.org/abs/2201.12086 +//! - 📝 [Paper](https://arxiv.org/abs/2201.12086). BLIP: Bootstrapping Language-Image Pre-training for Unified Vision-Language Understanding and Generation" +//! +//! - ⚡ [Interactive Wasm Example](https://huggingface.co/spaces/radames/Candle-BLIP-Image-Captioning) +//! - 💻 [GH Link](https://github.com/salesforce/BLIP) +//! - 🤗 [HF Link](https://huggingface.co/Salesforce/blip-image-captioning-base) +//! - 📝 [Paper](https://arxiv.org/abs/2201.12086) //! - use super::with_tracing::{linear, Embedding, Linear}; use candle::{Module, Result, Tensor, D}; use candle_nn::{layer_norm, LayerNorm, VarBuilder}; |