NikolayKozloff commited on
Commit
3c81f1f
1 Parent(s): 6e05f6b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +77 -0
README.md ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Iker/Llama-3-Instruct-Neurona-8b-v2
3
+ datasets:
4
+ - Danielbrdz/Barcenas-Economia
5
+ - HiTZ/casimedicos-exp
6
+ - somosnlp/coser_resumenes
7
+ - csebuetnlp/CrossSum
8
+ - Iker/Document-Translation-en-es
9
+ - somosnlp/es-inclusive-language-it
10
+ - glaiveai/glaive-code-assistant-v3
11
+ - glaiveai/glaive-function-calling-v2
12
+ - Iker/InstructTranslation-EN-ES
13
+ - somosnlp/lenguaje-claro-dataset
14
+ - somosnlp/LingComp_QA
15
+ - Iker/NoticIA
16
+ - teknium/OpenHermes-2.5
17
+ - Iker/OpenHermes-2.5-Spanish
18
+ - Helsinki-NLP/opus-100
19
+ - projecte-aina/RAG_Multilingual
20
+ - HiTZ/This-is-not-a-dataset
21
+ - Iker/Reddit-Post-Translation
22
+ - wikipedia
23
+ language:
24
+ - es
25
+ - en
26
+ library_name: transformers
27
+ license: llama3
28
+ pipeline_tag: text-generation
29
+ tags:
30
+ - synthetic
31
+ - llama-cpp
32
+ - gguf-my-repo
33
+ ---
34
+
35
+ # NikolayKozloff/Llama-3-Instruct-Neurona-8b-v2-IQ4_NL-GGUF
36
+ This model was converted to GGUF format from [`Iker/Llama-3-Instruct-Neurona-8b-v2`](https://huggingface.co/Iker/Llama-3-Instruct-Neurona-8b-v2) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
37
+ Refer to the [original model card](https://huggingface.co/Iker/Llama-3-Instruct-Neurona-8b-v2) for more details on the model.
38
+
39
+ ## Use with llama.cpp
40
+ Install llama.cpp through brew (works on Mac and Linux)
41
+
42
+ ```bash
43
+ brew install llama.cpp
44
+
45
+ ```
46
+ Invoke the llama.cpp server or the CLI.
47
+
48
+ ### CLI:
49
+ ```bash
50
+ llama-cli --hf-repo NikolayKozloff/Llama-3-Instruct-Neurona-8b-v2-IQ4_NL-GGUF --hf-file llama-3-instruct-neurona-8b-v2-iq4_nl-imat.gguf -p "The meaning to life and the universe is"
51
+ ```
52
+
53
+ ### Server:
54
+ ```bash
55
+ llama-server --hf-repo NikolayKozloff/Llama-3-Instruct-Neurona-8b-v2-IQ4_NL-GGUF --hf-file llama-3-instruct-neurona-8b-v2-iq4_nl-imat.gguf -c 2048
56
+ ```
57
+
58
+ 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.
59
+
60
+ Step 1: Clone llama.cpp from GitHub.
61
+ ```
62
+ git clone https://github.com/ggerganov/llama.cpp
63
+ ```
64
+
65
+ 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).
66
+ ```
67
+ cd llama.cpp && LLAMA_CURL=1 make
68
+ ```
69
+
70
+ Step 3: Run inference through the main binary.
71
+ ```
72
+ ./llama-cli --hf-repo NikolayKozloff/Llama-3-Instruct-Neurona-8b-v2-IQ4_NL-GGUF --hf-file llama-3-instruct-neurona-8b-v2-iq4_nl-imat.gguf -p "The meaning to life and the universe is"
73
+ ```
74
+ or
75
+ ```
76
+ ./llama-server --hf-repo NikolayKozloff/Llama-3-Instruct-Neurona-8b-v2-IQ4_NL-GGUF --hf-file llama-3-instruct-neurona-8b-v2-iq4_nl-imat.gguf -c 2048
77
+ ```