NikolayKozloff
commited on
Commit
•
a89de6b
1
Parent(s):
d5bd8cf
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
datasets:
|
4 |
+
- HuggingFaceFW/fineweb-edu
|
5 |
+
- bigcode/the-stack-v2
|
6 |
+
- mlfoundations/dclm-baseline-1.0
|
7 |
+
- math-ai/AutoMathText
|
8 |
+
- gair-prox/open-web-math-pro
|
9 |
+
- RUC-AIBOX/long_form_thought_data_5k
|
10 |
+
- internlm/Lean-Workbook
|
11 |
+
- internlm/Lean-Github
|
12 |
+
- deepseek-ai/DeepSeek-Prover-V1
|
13 |
+
- ScalableMath/Lean-STaR-base
|
14 |
+
- ScalableMath/Lean-STaR-plus
|
15 |
+
- ScalableMath/Lean-CoT-base
|
16 |
+
- ScalableMath/Lean-CoT-plus
|
17 |
+
- opencsg/chinese-fineweb-edu
|
18 |
+
- liwu/MNBVC
|
19 |
+
- vikp/textbook_quality_programming
|
20 |
+
- HuggingFaceTB/smollm-corpus
|
21 |
+
- OpenCoder-LLM/opc-annealing-corpus
|
22 |
+
- OpenCoder-LLM/opc-sft-stage1
|
23 |
+
- OpenCoder-LLM/opc-sft-stage2
|
24 |
+
- XinyaoHu/AMPS_mathematica
|
25 |
+
- deepmind/math_dataset
|
26 |
+
- mrfakename/basic-math-10m
|
27 |
+
- microsoft/orca-math-word-problems-200k
|
28 |
+
- AI-MO/NuminaMath-CoT
|
29 |
+
- HuggingFaceTB/cosmopedia
|
30 |
+
- MU-NLPC/Calc-ape210k
|
31 |
+
- manu/project_gutenberg
|
32 |
+
- storytracer/LoC-PD-Books
|
33 |
+
- allenai/dolma
|
34 |
+
language:
|
35 |
+
- en
|
36 |
+
- zh
|
37 |
+
base_model: yulan-team/YuLan-Mini
|
38 |
+
tags:
|
39 |
+
- llama-cpp
|
40 |
+
- gguf-my-repo
|
41 |
+
---
|
42 |
+
|
43 |
+
# NikolayKozloff/YuLan-Mini-Q8_0-GGUF
|
44 |
+
This model was converted to GGUF format from [`yulan-team/YuLan-Mini`](https://huggingface.co/yulan-team/YuLan-Mini) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
45 |
+
Refer to the [original model card](https://huggingface.co/yulan-team/YuLan-Mini) for more details on the model.
|
46 |
+
|
47 |
+
## Use with llama.cpp
|
48 |
+
Install llama.cpp through brew (works on Mac and Linux)
|
49 |
+
|
50 |
+
```bash
|
51 |
+
brew install llama.cpp
|
52 |
+
|
53 |
+
```
|
54 |
+
Invoke the llama.cpp server or the CLI.
|
55 |
+
|
56 |
+
### CLI:
|
57 |
+
```bash
|
58 |
+
llama-cli --hf-repo NikolayKozloff/YuLan-Mini-Q8_0-GGUF --hf-file yulan-mini-q8_0.gguf -p "The meaning to life and the universe is"
|
59 |
+
```
|
60 |
+
|
61 |
+
### Server:
|
62 |
+
```bash
|
63 |
+
llama-server --hf-repo NikolayKozloff/YuLan-Mini-Q8_0-GGUF --hf-file yulan-mini-q8_0.gguf -c 2048
|
64 |
+
```
|
65 |
+
|
66 |
+
Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
|
67 |
+
|
68 |
+
Step 1: Clone llama.cpp from GitHub.
|
69 |
+
```
|
70 |
+
git clone https://github.com/ggerganov/llama.cpp
|
71 |
+
```
|
72 |
+
|
73 |
+
Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
|
74 |
+
```
|
75 |
+
cd llama.cpp && LLAMA_CURL=1 make
|
76 |
+
```
|
77 |
+
|
78 |
+
Step 3: Run inference through the main binary.
|
79 |
+
```
|
80 |
+
./llama-cli --hf-repo NikolayKozloff/YuLan-Mini-Q8_0-GGUF --hf-file yulan-mini-q8_0.gguf -p "The meaning to life and the universe is"
|
81 |
+
```
|
82 |
+
or
|
83 |
+
```
|
84 |
+
./llama-server --hf-repo NikolayKozloff/YuLan-Mini-Q8_0-GGUF --hf-file yulan-mini-q8_0.gguf -c 2048
|
85 |
+
```
|