icefog72 commited on
Commit
6dc135a
1 Parent(s): 2c463d7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +50 -0
README.md CHANGED
@@ -108,6 +108,56 @@ model-index:
108
 
109
  This is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111
  ## Merge Details
112
  ### Merge Method
113
 
 
108
 
109
  This is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
110
 
111
+ ## Exl2 Quants
112
+ >- [4.2bpw-exl2](https://huggingface.co/icefog72/IceWhiskeyRP-7b-4.2bpw-exl2)
113
+ >- [6.5bpw-exl2](https://huggingface.co/icefog72/IceWhiskeyRP-7b-6.5bpw-exl2)
114
+ >- [8bpw-exl2](https://huggingface.co/icefog72/IceWhiskeyRP-7b-8bpw-exl2)
115
+
116
+ ## Thx mradermacher for GGUF
117
+ >- [GGUF](https://huggingface.co/mradermacher/Ice0.15-02.10-RP-GGUF)
118
+
119
+
120
+
121
+ ## Download
122
+
123
+ I recommend using the `huggingface-hub` Python library:
124
+
125
+ ```shell
126
+ pip3 install huggingface-hub
127
+ ```
128
+
129
+ To download the `main` branch to a folder called `IceWhiskeyRP-7b`:
130
+
131
+ ```shell
132
+ mkdir IceWhiskeyRP-7b
133
+ huggingface-cli download icefog72/IceWhiskeyRP-7b --local-dir IceWhiskeyRP-7b --local-dir-use-symlinks False
134
+ ```
135
+
136
+ <details>
137
+ <summary>More advanced huggingface-cli download usage</summary>
138
+
139
+ 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.
140
+
141
+ The cache location can be changed with the `HF_HOME` environment variable, and/or the `--cache-dir` parameter to `huggingface-cli`.
142
+
143
+ 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).
144
+
145
+ To accelerate downloads on fast connections (1Gbit/s or higher), install `hf_transfer`:
146
+
147
+ ```shell
148
+ pip3 install hf_transfer
149
+ ```
150
+
151
+ And set environment variable `HF_HUB_ENABLE_HF_TRANSFER` to `1`:
152
+
153
+ ```shell
154
+ mkdir FOLDERNAME
155
+ HF_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download MODEL --local-dir FOLDERNAME --local-dir-use-symlinks False
156
+ ```
157
+
158
+ Windows Command Line users: You can set the environment variable by running `set HF_HUB_ENABLE_HF_TRANSFER=1` before the download command.
159
+ </details>
160
+
161
  ## Merge Details
162
  ### Merge Method
163