├── LICENSE ├── README.md ├── dataset ├── rm │ ├── HongLouMeng_Preference.json │ ├── SanGuoYanyi_Preference.json │ ├── ShuiHuZhuan_Preference.json │ └── XiYouji_Preference.json └── sft │ ├── HongLouMeng_Parallel.csv │ ├── SanGuoYanyi_Parallel.csv │ ├── ShuiHuZhuan_Parallel.csv │ └── XiYouji_Parallel.csv ├── examples ├── HongLouMeng-6b │ ├── inference.py │ └── output_example.md ├── SanGuoYanYi-6b │ ├── inference.py │ └── output_example.md ├── ShuiHuZhuan-6b │ ├── inference.py │ └── output_example.md └── XiYouJi-6b │ ├── inference.py │ └── output_example.md └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylellm/stylellm_models/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylellm/stylellm_models/HEAD/README.md -------------------------------------------------------------------------------- /dataset/rm/HongLouMeng_Preference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylellm/stylellm_models/HEAD/dataset/rm/HongLouMeng_Preference.json -------------------------------------------------------------------------------- /dataset/rm/SanGuoYanyi_Preference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylellm/stylellm_models/HEAD/dataset/rm/SanGuoYanyi_Preference.json -------------------------------------------------------------------------------- /dataset/rm/ShuiHuZhuan_Preference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylellm/stylellm_models/HEAD/dataset/rm/ShuiHuZhuan_Preference.json -------------------------------------------------------------------------------- /dataset/rm/XiYouji_Preference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylellm/stylellm_models/HEAD/dataset/rm/XiYouji_Preference.json -------------------------------------------------------------------------------- /dataset/sft/HongLouMeng_Parallel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylellm/stylellm_models/HEAD/dataset/sft/HongLouMeng_Parallel.csv -------------------------------------------------------------------------------- /dataset/sft/SanGuoYanyi_Parallel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylellm/stylellm_models/HEAD/dataset/sft/SanGuoYanyi_Parallel.csv -------------------------------------------------------------------------------- /dataset/sft/ShuiHuZhuan_Parallel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylellm/stylellm_models/HEAD/dataset/sft/ShuiHuZhuan_Parallel.csv -------------------------------------------------------------------------------- /dataset/sft/XiYouji_Parallel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylellm/stylellm_models/HEAD/dataset/sft/XiYouji_Parallel.csv -------------------------------------------------------------------------------- /examples/HongLouMeng-6b/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylellm/stylellm_models/HEAD/examples/HongLouMeng-6b/inference.py -------------------------------------------------------------------------------- /examples/HongLouMeng-6b/output_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylellm/stylellm_models/HEAD/examples/HongLouMeng-6b/output_example.md -------------------------------------------------------------------------------- /examples/SanGuoYanYi-6b/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylellm/stylellm_models/HEAD/examples/SanGuoYanYi-6b/inference.py -------------------------------------------------------------------------------- /examples/SanGuoYanYi-6b/output_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylellm/stylellm_models/HEAD/examples/SanGuoYanYi-6b/output_example.md -------------------------------------------------------------------------------- /examples/ShuiHuZhuan-6b/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylellm/stylellm_models/HEAD/examples/ShuiHuZhuan-6b/inference.py -------------------------------------------------------------------------------- /examples/ShuiHuZhuan-6b/output_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylellm/stylellm_models/HEAD/examples/ShuiHuZhuan-6b/output_example.md -------------------------------------------------------------------------------- /examples/XiYouJi-6b/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylellm/stylellm_models/HEAD/examples/XiYouJi-6b/inference.py -------------------------------------------------------------------------------- /examples/XiYouJi-6b/output_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylellm/stylellm_models/HEAD/examples/XiYouJi-6b/output_example.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | transformers 2 | torch --------------------------------------------------------------------------------