qianhuiwu commited on
Commit
d4cb4b1
Β·
verified Β·
1 Parent(s): 2657804

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -17,8 +17,8 @@ For more details on model design and evaluation, please check: [🏠 Project Pag
17
  |--------------------------------------------|--------------------------------------------|
18
  | **GUI-Actor-7B-Qwen2-VL** | [πŸ€— Hugging Face](https://huggingface.co/microsoft/GUI-Actor-7B-Qwen2-VL) |
19
  | **GUI-Actor-2B-Qwen2-VL** | [πŸ€— Hugging Face](https://huggingface.co/microsoft/GUI-Actor-2B-Qwen2-VL) |
20
- | **GUI-Actor-7B-Qwen2.5-VL (coming soon)** | [πŸ€— Hugging Face](https://huggingface.co/microsoft/GUI-Actor-7B-Qwen2.5-VL) |
21
- | **GUI-Actor-3B-Qwen2.5-VL (coming soon)** | [πŸ€— Hugging Face](https://huggingface.co/microsoft/GUI-Actor-3B-Qwen2.5-VL) |
22
  | **GUI-Actor-Verifier-2B** | [πŸ€— Hugging Face](https://huggingface.co/microsoft/GUI-Actor-Verifier-2B) |
23
 
24
  ## πŸ“Š Performance Comparison on GUI Grounding Benchmarks
@@ -62,7 +62,7 @@ import torch
62
 
63
  from qwen_vl_utils import process_vision_info
64
  from datasets import load_dataset
65
- from transformers import Qwen2VLProcessor
66
  from gui_actor.constants import chat_template
67
  from gui_actor.modeling_qwen25vl import Qwen2_5_VLForConditionalGenerationWithPointer
68
  from gui_actor.inference import inference
@@ -70,7 +70,7 @@ from gui_actor.inference import inference
70
 
71
  # load model
72
  model_name_or_path = "microsoft/GUI-Actor-7B-Qwen2.5-VL"
73
- data_processor = Qwen2VLProcessor.from_pretrained(model_name_or_path)
74
  tokenizer = data_processor.tokenizer
75
  model = Qwen2_5_VLForConditionalGenerationWithPointer.from_pretrained(
76
  model_name_or_path,
 
17
  |--------------------------------------------|--------------------------------------------|
18
  | **GUI-Actor-7B-Qwen2-VL** | [πŸ€— Hugging Face](https://huggingface.co/microsoft/GUI-Actor-7B-Qwen2-VL) |
19
  | **GUI-Actor-2B-Qwen2-VL** | [πŸ€— Hugging Face](https://huggingface.co/microsoft/GUI-Actor-2B-Qwen2-VL) |
20
+ | **GUI-Actor-7B-Qwen2.5-VL** | [πŸ€— Hugging Face](https://huggingface.co/microsoft/GUI-Actor-7B-Qwen2.5-VL) |
21
+ | **GUI-Actor-3B-Qwen2.5-VL** | [πŸ€— Hugging Face](https://huggingface.co/microsoft/GUI-Actor-3B-Qwen2.5-VL) |
22
  | **GUI-Actor-Verifier-2B** | [πŸ€— Hugging Face](https://huggingface.co/microsoft/GUI-Actor-Verifier-2B) |
23
 
24
  ## πŸ“Š Performance Comparison on GUI Grounding Benchmarks
 
62
 
63
  from qwen_vl_utils import process_vision_info
64
  from datasets import load_dataset
65
+ from transformers import AutoProcessor
66
  from gui_actor.constants import chat_template
67
  from gui_actor.modeling_qwen25vl import Qwen2_5_VLForConditionalGenerationWithPointer
68
  from gui_actor.inference import inference
 
70
 
71
  # load model
72
  model_name_or_path = "microsoft/GUI-Actor-7B-Qwen2.5-VL"
73
+ data_processor = AutoProcessor.from_pretrained(model_name_or_path)
74
  tokenizer = data_processor.tokenizer
75
  model = Qwen2_5_VLForConditionalGenerationWithPointer.from_pretrained(
76
  model_name_or_path,