Triangle104 commited on
Commit
8dde115
·
verified ·
1 Parent(s): 72eccd4

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +117 -0
README.md ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: Spestly/Atlas-Flash-7B-Preview
3
+ tags:
4
+ - text-generation-inference
5
+ - transformers
6
+ - qwen2
7
+ - trl
8
+ - r1
9
+ - gemini-2.0
10
+ - gpt4
11
+ - conversational
12
+ - chat
13
+ - llama-cpp
14
+ - gguf-my-repo
15
+ license: mit
16
+ language:
17
+ - en
18
+ - zh
19
+ - fr
20
+ - es
21
+ - pt
22
+ - de
23
+ - it
24
+ - ru
25
+ - ja
26
+ - ko
27
+ - vi
28
+ - th
29
+ - ar
30
+ - fa
31
+ - he
32
+ - tr
33
+ - cs
34
+ - pl
35
+ - hi
36
+ - bn
37
+ - ur
38
+ - id
39
+ - ms
40
+ - lo
41
+ - my
42
+ - ceb
43
+ - km
44
+ - tl
45
+ - nl
46
+ library_name: transformers
47
+ datasets:
48
+ - BAAI/TACO
49
+ - codeparrot/apps
50
+ - rubenroy/GammaCorpus-v1-70k-UNFILTERED
51
+ extra_gated_prompt: By accessing this model, you agree to comply with ethical usage
52
+ guidelines and accept full responsibility for its applications. You will not use
53
+ this model for harmful, malicious, or illegal activities, and you understand that
54
+ the model's use is subject to ongoing monitoring for misuse. This model is provided
55
+ 'AS IS' and agreeing to this means that you are responsible for all the outputs
56
+ generated by you
57
+ extra_gated_fields:
58
+ Name: text
59
+ Organization: text
60
+ Country: country
61
+ Date of Birth: date_picker
62
+ Intended Use:
63
+ type: select
64
+ options:
65
+ - Research
66
+ - Education
67
+ - Personal Development
68
+ - Commercial Use
69
+ - label: Other
70
+ value: other
71
+ I agree to use this model in accordance with all applicable laws and ethical guidelines: checkbox
72
+ I agree to use this model under the MIT licence: checkbox
73
+ ---
74
+
75
+ # Triangle104/Atlas-Flash-7B-Preview-Q6_K-GGUF
76
+ This model was converted to GGUF format from [`Spestly/Atlas-Flash-7B-Preview`](https://huggingface.co/Spestly/Atlas-Flash-7B-Preview) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
77
+ Refer to the [original model card](https://huggingface.co/Spestly/Atlas-Flash-7B-Preview) for more details on the model.
78
+
79
+ ## Use with llama.cpp
80
+ Install llama.cpp through brew (works on Mac and Linux)
81
+
82
+ ```bash
83
+ brew install llama.cpp
84
+
85
+ ```
86
+ Invoke the llama.cpp server or the CLI.
87
+
88
+ ### CLI:
89
+ ```bash
90
+ llama-cli --hf-repo Triangle104/Atlas-Flash-7B-Preview-Q6_K-GGUF --hf-file atlas-flash-7b-preview-q6_k.gguf -p "The meaning to life and the universe is"
91
+ ```
92
+
93
+ ### Server:
94
+ ```bash
95
+ llama-server --hf-repo Triangle104/Atlas-Flash-7B-Preview-Q6_K-GGUF --hf-file atlas-flash-7b-preview-q6_k.gguf -c 2048
96
+ ```
97
+
98
+ 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.
99
+
100
+ Step 1: Clone llama.cpp from GitHub.
101
+ ```
102
+ git clone https://github.com/ggerganov/llama.cpp
103
+ ```
104
+
105
+ 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).
106
+ ```
107
+ cd llama.cpp && LLAMA_CURL=1 make
108
+ ```
109
+
110
+ Step 3: Run inference through the main binary.
111
+ ```
112
+ ./llama-cli --hf-repo Triangle104/Atlas-Flash-7B-Preview-Q6_K-GGUF --hf-file atlas-flash-7b-preview-q6_k.gguf -p "The meaning to life and the universe is"
113
+ ```
114
+ or
115
+ ```
116
+ ./llama-server --hf-repo Triangle104/Atlas-Flash-7B-Preview-Q6_K-GGUF --hf-file atlas-flash-7b-preview-q6_k.gguf -c 2048
117
+ ```