Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,44 +1,54 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
##
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
##
|
| 43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
This project is licensed under the MIT License - see the LICENSE file for details.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Nomic MCP Tool
|
| 3 |
+
emoji: 🗂️
|
| 4 |
+
colorFrom: indigo
|
| 5 |
+
colorTo: pink
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: "5.26.0"
|
| 8 |
+
app_file: app.py
|
| 9 |
+
pinned: false
|
| 10 |
+
---
|
| 11 |
+
# Nomic Vision Embedding Model
|
| 12 |
+
|
| 13 |
+
This project provides a Gradio interface for the [nomic-ai/nomic-embed-vision-v1.5](https://huggingface.co/nomic-ai/nomic-embed-vision-v1.5) image embedding model. It allows you to upload images and generate embeddings that can be used for various computer vision tasks.
|
| 14 |
+
|
| 15 |
+
## Features
|
| 16 |
+
|
| 17 |
+
- Generate embeddings for images using the nomic-ai/nomic-embed-vision-v1.5 model
|
| 18 |
+
- Simple and intuitive Gradio web interface
|
| 19 |
+
- Support for various image formats
|
| 20 |
+
|
| 21 |
+
## How It Works
|
| 22 |
+
|
| 23 |
+
The application uses the Hugging Face Transformers library to load the nomic-ai/nomic-embed-vision-v1.5 model and generate embeddings for uploaded images. The embeddings are high-dimensional vector representations of the images that capture their semantic content.
|
| 24 |
+
|
| 25 |
+
## Deployment
|
| 26 |
+
|
| 27 |
+
This application is designed to be deployed on Huggingface Spaces. To deploy:
|
| 28 |
+
|
| 29 |
+
1. Create a new Space on Huggingface Spaces with the Gradio SDK
|
| 30 |
+
2. Upload these files to your Space
|
| 31 |
+
3. The Space will automatically build and deploy the application
|
| 32 |
+
|
| 33 |
+
## Local Development
|
| 34 |
+
|
| 35 |
+
To run this application locally:
|
| 36 |
+
|
| 37 |
+
1. Clone this repository
|
| 38 |
+
2. Install the dependencies: `pip install -r requirements.txt`
|
| 39 |
+
3. Run the application: `python app.py`
|
| 40 |
+
4. Open your browser at http://localhost:7860
|
| 41 |
+
|
| 42 |
+
## Requirements
|
| 43 |
+
|
| 44 |
+
- Python 3.7+
|
| 45 |
+
- Gradio 4.19.0+
|
| 46 |
+
- Transformers
|
| 47 |
+
- PyTorch
|
| 48 |
+
- Pillow
|
| 49 |
+
- NumPy
|
| 50 |
+
- Requests
|
| 51 |
+
|
| 52 |
+
## License
|
| 53 |
+
|
| 54 |
This project is licensed under the MIT License - see the LICENSE file for details.
|