Tj commited on
Commit
59f95cb
·
verified ·
1 Parent(s): baa41dd

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: HuggingFaceTB/SmolVLM-Instruct
4
+ tags:
5
+ - vision-language
6
+ - multimodal
7
+ - chat
8
+ - conversational
9
+ - text-generation
10
+ library_name: transformers
11
+ pipeline_tag: text-generation
12
+ ---
13
+
14
+ # SmolVLM Final Merged
15
+
16
+ This is a fine-tuned version of SmolVLM-Instruct, optimized for conversational AI and vision-language tasks.
17
+
18
+ ## Model Details
19
+
20
+ - **Base Model**: HuggingFaceTB/SmolVLM-Instruct
21
+ - **Training**: Fine-tuned using LLaMA-Factory
22
+ - **Use Cases**: Chat, vision understanding, multimodal reasoning
23
+ - **License**: Apache 2.0
24
+
25
+ ## Usage
26
+
27
+ ```python
28
+ from transformers import AutoProcessor, AutoModelForVision2Seq
29
+ import torch
30
+
31
+ model = AutoModelForVision2Seq.from_pretrained("Tj/smolvlm-final-merged")
32
+ processor = AutoProcessor.from_pretrained("Tj/smolvlm-final-merged")
33
+
34
+ # Your inference code here