ThomasDh-C commited on
Commit
0946793
·
verified ·
1 Parent(s): 8ded6e8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -52
README.md CHANGED
@@ -4,13 +4,13 @@ tags:
4
  - llama-factory
5
  ---
6
 
7
- # Model Card for Model ID
8
-
9
- <!-- Provide a quick summary of what the model is/does. -->
10
 
 
11
 
12
 
13
  ## Model Details
 
14
 
15
  ### Model Description
16
 
@@ -18,69 +18,34 @@ tags:
18
 
19
  This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.
20
 
21
- - **Developed by:** [More Information Needed]
22
- - **Funded by [optional]:** [More Information Needed]
23
- - **Shared by [optional]:** [More Information Needed]
24
- - **Model type:** [More Information Needed]
25
- - **Language(s) (NLP):** [More Information Needed]
26
- - **License:** [More Information Needed]
27
- - **Finetuned from model [optional]:** [More Information Needed]
28
 
29
  ### Model Sources [optional]
30
-
31
- <!-- Provide the basic links for the model. -->
32
-
33
- - **Repository:** [More Information Needed]
34
- - **Paper [optional]:** [More Information Needed]
35
- - **Demo [optional]:** [More Information Needed]
36
-
37
  ## Uses
 
38
 
39
- <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
40
-
41
- ### Direct Use
42
-
43
- <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
44
-
45
- [More Information Needed]
46
-
47
- ### Downstream Use [optional]
48
-
49
- <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
50
-
51
- [More Information Needed]
52
-
53
- ### Out-of-Scope Use
54
-
55
- <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
56
-
57
- [More Information Needed]
58
-
59
- ## Bias, Risks, and Limitations
60
-
61
- <!-- This section is meant to convey both technical and sociotechnical limitations. -->
62
-
63
- [More Information Needed]
64
-
65
- ### Recommendations
66
-
67
- <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
68
-
69
- Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
70
 
71
  ## How to Get Started with the Model
72
 
73
- Use the code below to get started with the model.
 
 
 
74
 
75
- [More Information Needed]
76
 
77
  ## Training Details
78
 
79
  ### Training Data
80
 
81
  <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
82
-
83
- [More Information Needed]
84
 
85
  ### Training Procedure
86
 
 
4
  - llama-factory
5
  ---
6
 
7
+ # Fine-tune of Qwen2-VL on RICO dataset
 
 
8
 
9
+ Qwen-2VL was trained to predict bounding boxes for elements in images. We further fine-tune it on the RICO android screenshot dataset to improve its performance.
10
 
11
 
12
  ## Model Details
13
+ Qwen-2VL can use images of any size. We apply random crops to the RICO dataset to ensure a diverse range of aspect ratios and then fine-tune Qwen-2VL to predict bounding boxes of elements in screenshots.
14
 
15
  ### Model Description
16
 
 
18
 
19
  This is the model card of a 🤗 transformers model that has been pushed on the Hub. This model card has been automatically generated.
20
 
21
+ - **Developed by:** Thomas Dhome-Casanova
22
+ - **Model type:** VLM
23
+ - **Language(s):** English
24
+ - **Finetuned from model:** Qwen2-VL-7B
 
 
 
25
 
26
  ### Model Sources [optional]
27
+ The base model is Qwen2-VL-7B-Instruct
28
+ - **Repository:** https://github.com/QwenLM/Qwen2-VL
29
+ - **Paper:** https://arxiv.org/pdf/2409.12191
30
+
 
 
 
31
  ## Uses
32
+ This model is intended to be used for fast computer-use with strong visual understanding, but limited reasoning capabilities. It should hence be paired with a strong foundational model for reasoning.
33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
 
35
  ## How to Get Started with the Model
36
 
37
+ model = Qwen2VLForConditionalGeneration.from_pretrained(
38
+ "ThomasDh-C/RicoQwen2VL", torch_dtype="auto", device_map="auto"
39
+ )
40
+ processor = AutoProcessor.from_pretrained("ThomasDh-C/RicoQwen2VL")
41
 
 
42
 
43
  ## Training Details
44
 
45
  ### Training Data
46
 
47
  <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
48
+ RICO dataset with random crops
 
49
 
50
  ### Training Procedure
51