icefog72 commited on
Commit
2f1bfde
·
verified ·
1 Parent(s): d82aa88

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +46 -2
README.md CHANGED
@@ -10,7 +10,7 @@ tags:
10
  - nsfw
11
  base_model: []
12
  model-index:
13
- - name: Ice0.40-20.11-RP
14
  results:
15
  - task:
16
  type: text-generation
@@ -129,7 +129,51 @@ This is a merge of pre-trained language models created using [mergekit](https://
129
  >- [6.5bpw-exl2](https://huggingface.co/icefog72/IceDrunkenCherryRP-7b-6.5bpw-exl2)
130
  >- [8bpw-exl2](https://huggingface.co/icefog72/IceDrunkenCherryRP-7b-8bpw-exl2)
131
 
132
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
 
134
  ### Merge Method
135
 
 
10
  - nsfw
11
  base_model: []
12
  model-index:
13
+ - name: Ice0.40-20.11-RP, IceDrunkenCherryRP-7b
14
  results:
15
  - task:
16
  type: text-generation
 
129
  >- [6.5bpw-exl2](https://huggingface.co/icefog72/IceDrunkenCherryRP-7b-6.5bpw-exl2)
130
  >- [8bpw-exl2](https://huggingface.co/icefog72/IceDrunkenCherryRP-7b-8bpw-exl2)
131
 
132
+ ## Thx mradermacher for GGUF
133
+
134
+ > [!WARNING]
135
+ >- [GGUF](https://huggingface.co/mradermacher/Ice0.40-20.11-RP-GGUF)
136
+ >- [i1-GGUF](https://huggingface.co/mradermacher/Ice0.40-20.11-RP-i1-GGUF)
137
+
138
+ ## Download
139
+
140
+ I recommend using the `huggingface-hub` Python library:
141
+
142
+ ```shell
143
+ pip3 install huggingface-hub
144
+ ```
145
+
146
+ To download the `main` branch to a folder called `IceDrunkenCherryRP-7b`:
147
+
148
+ ```shell
149
+ mkdir IceDrunkenCherryRP-7b
150
+ huggingface-cli download icefog72/IceDrunkenCherryRP-7b --local-dir IceDrunkenCherryRP-7b --local-dir-use-symlinks False
151
+ ```
152
+
153
+ <details>
154
+ <summary>More advanced huggingface-cli download usage</summary>
155
+
156
+ If you remove the `--local-dir-use-symlinks False` parameter, the files will instead be stored in the central Hugging Face cache directory (default location on Linux is: `~/.cache/huggingface`), and symlinks will be added to the specified `--local-dir`, pointing to their real location in the cache. This allows for interrupted downloads to be resumed, and allows you to quickly clone the repo to multiple places on disk without triggering a download again. The downside, and the reason why I don't list that as the default option, is that the files are then hidden away in a cache folder and it's harder to know where your disk space is being used, and to clear it up if/when you want to remove a download model.
157
+
158
+ The cache location can be changed with the `HF_HOME` environment variable, and/or the `--cache-dir` parameter to `huggingface-cli`.
159
+
160
+ For more documentation on downloading with `huggingface-cli`, please see: [HF -> Hub Python Library -> Download files -> Download from the CLI](https://huggingface.co/docs/huggingface_hub/guides/download#download-from-the-cli).
161
+
162
+ To accelerate downloads on fast connections (1Gbit/s or higher), install `hf_transfer`:
163
+
164
+ ```shell
165
+ pip3 install hf_transfer
166
+ ```
167
+
168
+ And set environment variable `HF_HUB_ENABLE_HF_TRANSFER` to `1`:
169
+
170
+ ```shell
171
+ mkdir FOLDERNAME
172
+ HF_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download MODEL --local-dir FOLDERNAME --local-dir-use-symlinks False
173
+ ```
174
+
175
+ Windows Command Line users: You can set the environment variable by running `set HF_HUB_ENABLE_HF_TRANSFER=1` before the download command.
176
+ </details>
177
 
178
  ### Merge Method
179