ninjals commited on
Commit
548f387
ยท
verified ยท
1 Parent(s): 1c8b3da

Uploading Gradio multimodal RAG demo

Browse files
README.md CHANGED
@@ -4,7 +4,6 @@ emoji: ๐Ÿ‘๏ธ๐Ÿ“‘
4
  colorFrom: green
5
  colorTo: green
6
  sdk: gradio
7
- python_version: "3.12"
8
  app_file: app.py
9
  pinned: false
10
  license: apache-2.0
@@ -28,6 +27,6 @@ Details:
28
  * **Embedding model used:** https://huggingface.co/nvidia/llama-nemotron-embed-vl-1b-v2
29
  * **Note:** By default we use the image + text embeddings as we have access to image and text pairs in our dataset, and according to the [launch blog post](https://huggingface.co/blog/nvidia/llama-nemotron-vl-1b), these work the best.
30
  * **Rerank model used:** https://huggingface.co/nvidia/llama-nemotron-rerank-vl-1b-v2
31
- * **Generation model used:** https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-FP8
32
 
33
  **Note:** This README.md was authored in a [live tutorial recorded for YouTube](https://youtube.com/live/XWmqcFiBvpU?feature=share).
 
4
  colorFrom: green
5
  colorTo: green
6
  sdk: gradio
 
7
  app_file: app.py
8
  pinned: false
9
  license: apache-2.0
 
27
  * **Embedding model used:** https://huggingface.co/nvidia/llama-nemotron-embed-vl-1b-v2
28
  * **Note:** By default we use the image + text embeddings as we have access to image and text pairs in our dataset, and according to the [launch blog post](https://huggingface.co/blog/nvidia/llama-nemotron-vl-1b), these work the best.
29
  * **Rerank model used:** https://huggingface.co/nvidia/llama-nemotron-rerank-vl-1b-v2
30
+ * **Generation model used:** https://huggingface.co/Qwen/Qwen3-VL-2B-Instruct (note: you could use a larger model such as [Nemotron v3](https://huggingface.co/collections/nvidia/nvidia-nemotron-v3), however, this will require more compute resources)
31
 
32
  **Note:** This README.md was authored in a [live tutorial recorded for YouTube](https://youtube.com/live/XWmqcFiBvpU?feature=share).
image_text_embeddings_10k.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53d950314e50f14356586749a457f1cb2be12b720563a9777c2c1a4c9197b90e
3
+ size 41353320
requirements.txt CHANGED
@@ -1,7 +1,7 @@
1
  torch==2.9.1
2
  torchvision==0.24.1
3
  transformers==4.57.3
4
- gradio==6.8.0
5
  datasets==4.4.2
6
  safetensors==0.7.0
7
  Pillow==12.0.0
 
1
  torch==2.9.1
2
  torchvision==0.24.1
3
  transformers==4.57.3
4
+ gradio==6.2.0
5
  datasets==4.4.2
6
  safetensors==0.7.0
7
  Pillow==12.0.0