Views
No views yet
| Item | Description |
|---|---|
| Base model | Qwen-series 8B-parameter scale (e.g. Qwen3-8B; refer to actual base) |
| Training | Script-simulated RL; multi-turn tool calls + GRPO |
| Training data | crossvid_train.parquet |
| Main capabilities | Plans multi-turn observe / get_caption / answer tool calls in a text-only script environment; when deployed, performs sort, grounding, assembly, multiple choice, open QA, UAV, and related tasks on real video/audio |
agent_system/.env:1MASTER_API_BASE=https://your-api-endpoint/v1
2MASTER_API_KEY=your_key
3MASTER_MODEL=qwen8b_crossvidRL # or your deployed model name1cd agent_system
2python run_tasks/run_PSS_agent.py
3python run_tasks/run_FSA_agent.py
4python run_tasks/run_CCQA_agent.py
5# etc.1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_name = "xiaohua616/qwen8b_crossvidRL"
4tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
5model = AutoModelForCausalLM.from_pretrained(model_name, device_map="auto", trust_remote_code=True)verl/examples/sglang_multiturn/config/crossvid_qwen3_grpo.yaml and similar.verl/utils/reward_score/crossvid.py).agent_system tasks; compare answers with ground truth.