Ricky06662 commited on
Commit
ed36321
·
verified ·
1 Parent(s): 6415e33

Add model card

Browse files
Files changed (1) hide show
  1. README.md +20 -0
README.md ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - vision
5
+ - language
6
+ - multimodal
7
+ - qwen
8
+ - visurf
9
+ ---
10
+
11
+ # Visurf Model
12
+
13
+ ```python
14
+ from transformers import AutoTokenizer, AutoModelForCausalLM
15
+ import torch
16
+
17
+ model_name = "Ricky06662/Visurf-7B-Best-on-gRefCOCO"
18
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
19
+ model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype=torch.float16)
20
+ ```