Feature Extraction
Transformers
Safetensors
English
Korean
multilingual
qwen3_vl
vision-language
embedding
multimodal-embedding
mmeb
digital-forensics
custom_code
Instructions to use Urock-AI/Eddy-vl_embedding_1.9B_v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Urock-AI/Eddy-vl_embedding_1.9B_v1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="Urock-AI/Eddy-vl_embedding_1.9B_v1", trust_remote_code=True)# Load model directly from transformers import AutoProcessor, AutoModel processor = AutoProcessor.from_pretrained("Urock-AI/Eddy-vl_embedding_1.9B_v1", trust_remote_code=True) model = AutoModel.from_pretrained("Urock-AI/Eddy-vl_embedding_1.9B_v1", trust_remote_code=True) - Notebooks
- Google Colab
- Kaggle
Trim README note
Browse files
README.md
CHANGED
|
@@ -94,7 +94,7 @@ embedder = VLEmbedder(
|
|
| 94 |
# embedder = VLEmbedder(model_id, weights_path="/path/to/model.safetensors", ...)
|
| 95 |
```
|
| 96 |
|
| 97 |
-
> `trust_remote_code=True` is required for `processing_vl.py` (`VLProcessor`) in this repo. Model weights load from `model.safetensors`
|
| 98 |
|
| 99 |
Embeddings are L2-normalized and compared by cosine similarity (dot product). A simple "find the closest image to this text" looks like:
|
| 100 |
|
|
|
|
| 94 |
# embedder = VLEmbedder(model_id, weights_path="/path/to/model.safetensors", ...)
|
| 95 |
```
|
| 96 |
|
| 97 |
+
> `trust_remote_code=True` is required for `processing_vl.py` (`VLProcessor`) in this repo. Model weights load from `model.safetensors`.
|
| 98 |
|
| 99 |
Embeddings are L2-normalized and compared by cosine similarity (dot product). A simple "find the closest image to this text" looks like:
|
| 100 |
|