Files changed (1) hide show
  1. README.md +37 -3
README.md CHANGED
@@ -1,3 +1,37 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## 数据集
2
+
3
+ ### 通用领域含思维链数据集:
4
+ ```bash
5
+ git lfs install
6
+ git clone https://huggingface.co/datasets/Congliu/Chinese-DeepSeek-R1-Distill-data-110k-SFT
7
+ ```
8
+ 若不想克隆大型文件:
9
+ ```bash
10
+ GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/datasets/Congliu/Chinese-DeepSeek-R1-Distill-data-110k-SFT
11
+ ```
12
+ ### 含思维链心理辅导对话数据集:
13
+ ```bash
14
+ git lfs install
15
+ git clone https://huggingface.co/datasets/CAS-SIAT-XinHai/CPsyCoun
16
+ ```
17
+ 若不想克隆大型文件:
18
+ ```bash
19
+ GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/datasets/CAS-SIAT-XinHai/CPsyCoun
20
+ ```
21
+
22
+ ## 模型
23
+
24
+ ### 下载
25
+ ```bash
26
+ git lfs install
27
+ git clone https://huggingface.co/juneup/internlm2.5_7b_distill
28
+ ```
29
+ **若不想克隆大型文件:
30
+ ```bash
31
+ GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/juneup/internlm2.5_7b_distill
32
+ ```
33
+
34
+ ### 在Ollama下载
35
+ ```bash
36
+ ollama run Juneup/internlm2.5_7b_distill:q4_k_m
37
+ ```