├── .gitignore ├── LICENSE ├── README.md ├── data └── example.jsonl ├── test.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muyaostudio/qwen2_seq_cls/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muyaostudio/qwen2_seq_cls/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muyaostudio/qwen2_seq_cls/HEAD/README.md -------------------------------------------------------------------------------- /data/example.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muyaostudio/qwen2_seq_cls/HEAD/data/example.jsonl -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muyaostudio/qwen2_seq_cls/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muyaostudio/qwen2_seq_cls/HEAD/train.py --------------------------------------------------------------------------------