Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
datasets:
|
4 |
+
- LTS-VVE/Teuta-sq
|
5 |
+
- LTS-VVE/grammar_sq_0.1
|
6 |
+
- LTS-VVE/linguistic_sq
|
7 |
+
- LTS-VVE/Math-physics-dataset-sq
|
8 |
+
- LTS-VVE/albanian-synthetic
|
9 |
+
- noxneural/lilium_albanicum_eng_alb
|
10 |
+
- MIND-Lab/Safety-Evaluation
|
11 |
+
- shb777/simple-math-steps-7M
|
12 |
+
- RishiKompelli/TherapyDataset
|
13 |
+
- microsoft/orca-math-word-problems-200k
|
14 |
+
- Vezora/Tested-143k-Python-Alpaca
|
15 |
+
- AI4Chem/ChemPref-DPO-for-Chemistry-data-en
|
16 |
+
- jkhedri/psychology-dataset
|
17 |
+
- samhog/psychology-10k
|
18 |
+
- Amod/mental_health_counseling_conversations
|
19 |
+
- sayhan/strix-philosophy-qa
|
20 |
+
- Maverfrick/Rust_dataset
|
21 |
+
- Neloy262/rust_instruction_dataset
|
22 |
+
- Tesslate/Rust_Dataset
|
23 |
+
language:
|
24 |
+
- en
|
25 |
+
- sq
|
26 |
+
base_model: LTS-VVE/Teuta
|
27 |
+
pipeline_tag: text-generation
|
28 |
+
tags:
|
29 |
+
- al
|
30 |
+
- math
|
31 |
+
- philosophy
|
32 |
+
- chemistry
|
33 |
+
- code
|
34 |
+
- biology
|
35 |
+
- climate
|
36 |
+
- not-for-all-audiences
|
37 |
+
- llama-cpp
|
38 |
+
- gguf-my-repo
|
39 |
+
---
|
40 |
+
|
41 |
+
# NikolayKozloff/Teuta-Q8_0-GGUF
|
42 |
+
This model was converted to GGUF format from [`LTS-VVE/Teuta`](https://huggingface.co/LTS-VVE/Teuta) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
|
43 |
+
Refer to the [original model card](https://huggingface.co/LTS-VVE/Teuta) for more details on the model.
|
44 |
+
|
45 |
+
## Use with llama.cpp
|
46 |
+
Install llama.cpp through brew (works on Mac and Linux)
|
47 |
+
|
48 |
+
```bash
|
49 |
+
brew install llama.cpp
|
50 |
+
|
51 |
+
```
|
52 |
+
Invoke the llama.cpp server or the CLI.
|
53 |
+
|
54 |
+
### CLI:
|
55 |
+
```bash
|
56 |
+
llama-cli --hf-repo NikolayKozloff/Teuta-Q8_0-GGUF --hf-file teuta-q8_0.gguf -p "The meaning to life and the universe is"
|
57 |
+
```
|
58 |
+
|
59 |
+
### Server:
|
60 |
+
```bash
|
61 |
+
llama-server --hf-repo NikolayKozloff/Teuta-Q8_0-GGUF --hf-file teuta-q8_0.gguf -c 2048
|
62 |
+
```
|
63 |
+
|
64 |
+
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.
|
65 |
+
|
66 |
+
Step 1: Clone llama.cpp from GitHub.
|
67 |
+
```
|
68 |
+
git clone https://github.com/ggerganov/llama.cpp
|
69 |
+
```
|
70 |
+
|
71 |
+
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).
|
72 |
+
```
|
73 |
+
cd llama.cpp && LLAMA_CURL=1 make
|
74 |
+
```
|
75 |
+
|
76 |
+
Step 3: Run inference through the main binary.
|
77 |
+
```
|
78 |
+
./llama-cli --hf-repo NikolayKozloff/Teuta-Q8_0-GGUF --hf-file teuta-q8_0.gguf -p "The meaning to life and the universe is"
|
79 |
+
```
|
80 |
+
or
|
81 |
+
```
|
82 |
+
./llama-server --hf-repo NikolayKozloff/Teuta-Q8_0-GGUF --hf-file teuta-q8_0.gguf -c 2048
|
83 |
+
```
|