Views
No views yet
1cd tag_annotate
2export CUDA_VISIBLE_DEVICES=0
3python annotate.py \
4 --data_path path/to/your/data \
5 --output_dir path/to/output/dir \
6 --model_path CDT-Domain-Tagger \
7 --prompt_file ./prompt/annotation_prompt.jsonl \
8 --cognition_skill_file ./prompt/cognition.json \
9 --domain_skill_file ./prompt/domain.json \
10 --task_skill_file ./prompt/task.json \
11 --tag_type "Domain" \
12 --batch_size 321[
2 {
3 "messages": [
4 {
5 "role": "user",
6 "content": "xxxx"
7 },
8 {
9 "role": "assistant",
10 "content": "xxxx"
11 }
12 ]
13 },
14]1@misc{mo2025cdtcomprehensivecapabilityframework,
2 title={CDT: A Comprehensive Capability Framework for Large Language Models Across Cognition, Domain, and Task},
3 author={Haosi Mo and Xinyu Ma and Xuebo Liu and Derek F. Wong and Yu Li and Jie Liu and Min Zhang},
4 year={2025},
5 eprint={2509.24422},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2509.24422},
9}