Files
candle/candle-transformers/src/models/openclip/mod.rs
Quentin Gallouédec ffb8d63324 Use HF Papers
2025-05-17 03:41:24 +00:00

14 lines
444 B
Rust

//! Open Contrastive Language-Image Pre-Training
//!
//! Open Contrastive Language-Image Pre-Training (OpenCLIP) is an architecture trained on
//! pairs of images with related texts.
//!
//! - 💻 [GH Link](https://github.com/mlfoundations/open_clip)
//! - 📝 [Paper](https://huggingface.co/papers/2212.07143)
//!
//! ## Overview
//!
//! ![](https://raw.githubusercontent.com/mlfoundations/open_clip/main/docs/CLIP.png)
pub mod text_model;