ZHZisZZ commited on
Commit ·
253ee7b
1
Parent(s): 259d00c
refactor
Browse files- {src/cua_lite → cua_lite}/data/interfaces/base.py +0 -0
- {src/cua_lite → cua_lite}/data/interfaces/qwen3_vl.py +0 -0
- {src/cua_lite → cua_lite}/data/interfaces/uitars15_v1.py +0 -0
- {src/cua_lite → cua_lite}/data/interfaces/uitars15_v2.py +0 -0
- {src/cua_lite → cua_lite}/data/preproc/README.md +0 -0
- {src/cua_lite → cua_lite}/data/preproc/opencua/README.md +2 -2
- {src/cua_lite → cua_lite}/data/preproc/opencua/opencua.py +0 -0
- {src/cua_lite → cua_lite}/data/unzip.py +0 -0
- {src/cua_lite → cua_lite}/data/utils.py +0 -0
- src/cua_lite/train/sft.py → cua_lite/train/collators.py +0 -0
- src/cua_lite/utils/utils.py → cua_lite/train/sft.py +0 -0
- cua_lite/utils/utils.py +0 -0
{src/cua_lite → cua_lite}/data/interfaces/base.py
RENAMED
|
File without changes
|
{src/cua_lite → cua_lite}/data/interfaces/qwen3_vl.py
RENAMED
|
File without changes
|
{src/cua_lite → cua_lite}/data/interfaces/uitars15_v1.py
RENAMED
|
File without changes
|
{src/cua_lite → cua_lite}/data/interfaces/uitars15_v2.py
RENAMED
|
File without changes
|
{src/cua_lite → cua_lite}/data/preproc/README.md
RENAMED
|
File without changes
|
{src/cua_lite → cua_lite}/data/preproc/opencua/README.md
RENAMED
|
@@ -23,7 +23,7 @@ Standardize AgentNet preprocessing using the Qwen3-VL action spaces. By saving i
|
|
| 23 |
> TODO (zwc): Please scale it up and push the complete dataset to huggingface. The script is running slowly and needs to be sped up.
|
| 24 |
```shell
|
| 25 |
# process 1/256 of the dataset
|
| 26 |
-
python
|
| 27 |
--jsonl_path ".data/huggingface/xlangai/AgentNet/agentnet_ubuntu_5k.jsonl" \
|
| 28 |
--extracted_images_dir ".data/huggingface/xlangai/AgentNet/extracted_ubuntu_images" \
|
| 29 |
--output_path ".data/tmp/scalecua/ubuntu" \
|
|
@@ -36,7 +36,7 @@ python src/cua_lite/data/preproc/opencua/opencua.py \
|
|
| 36 |
Unzip the file to separate images and text. This prevents redundant image saving during the text preprocessing later on.
|
| 37 |
> TODO (zwc): The script is running slowly and needs to be sped up.
|
| 38 |
```shell
|
| 39 |
-
python
|
| 40 |
--input_path ".data/tmp/scalecua/ubuntu/shard-00000-of-00256" \
|
| 41 |
--output_path ".data/unzipped/scalecua/ubuntu/shard-00000-of-00256" \
|
| 42 |
--overwrite
|
|
|
|
| 23 |
> TODO (zwc): Please scale it up and push the complete dataset to huggingface. The script is running slowly and needs to be sped up.
|
| 24 |
```shell
|
| 25 |
# process 1/256 of the dataset
|
| 26 |
+
python cua_lite/data/preproc/opencua/opencua.py \
|
| 27 |
--jsonl_path ".data/huggingface/xlangai/AgentNet/agentnet_ubuntu_5k.jsonl" \
|
| 28 |
--extracted_images_dir ".data/huggingface/xlangai/AgentNet/extracted_ubuntu_images" \
|
| 29 |
--output_path ".data/tmp/scalecua/ubuntu" \
|
|
|
|
| 36 |
Unzip the file to separate images and text. This prevents redundant image saving during the text preprocessing later on.
|
| 37 |
> TODO (zwc): The script is running slowly and needs to be sped up.
|
| 38 |
```shell
|
| 39 |
+
python cua_lite/data/unzip.py \
|
| 40 |
--input_path ".data/tmp/scalecua/ubuntu/shard-00000-of-00256" \
|
| 41 |
--output_path ".data/unzipped/scalecua/ubuntu/shard-00000-of-00256" \
|
| 42 |
--overwrite
|
{src/cua_lite → cua_lite}/data/preproc/opencua/opencua.py
RENAMED
|
File without changes
|
{src/cua_lite → cua_lite}/data/unzip.py
RENAMED
|
File without changes
|
{src/cua_lite → cua_lite}/data/utils.py
RENAMED
|
File without changes
|
src/cua_lite/train/sft.py → cua_lite/train/collators.py
RENAMED
|
File without changes
|
src/cua_lite/utils/utils.py → cua_lite/train/sft.py
RENAMED
|
File without changes
|
cua_lite/utils/utils.py
ADDED
|
File without changes
|