turtle170 commited on
Commit
acca4e0
·
verified ·
1 Parent(s): 7ca3e5b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: turtle170/MicroAtlas-V1
3
+ datasets:
4
+ - teknium/OpenHermes-2.5
5
+ - Magpie-Align/Magpie-Phi3-Pro-300K-Filtered
6
+ language:
7
+ - en
8
+ library_name: peft
9
+ license: apache-2.0
10
+ pipeline_tag: text-generation
11
+ tags:
12
+ - base_model:adapter:microsoft/Phi-3-mini-4k-instruct
13
+ - lora
14
+ - transformers
15
+ - llama-cpp
16
+ - gguf-my-lora
17
+ ---
18
+
19
+ # turtle170/MicroAtlas-V1-F16-GGUF
20
+ This LoRA adapter was converted to GGUF format from [`turtle170/MicroAtlas-V1`](https://huggingface.co/turtle170/MicroAtlas-V1) via the ggml.ai's [GGUF-my-lora](https://huggingface.co/spaces/ggml-org/gguf-my-lora) space.
21
+ Refer to the [original adapter repository](https://huggingface.co/turtle170/MicroAtlas-V1) for more details.
22
+
23
+ ## Use with llama.cpp
24
+
25
+ ```bash
26
+ # with cli
27
+ llama-cli -m base_model.gguf --lora MicroAtlas-V1-f16.gguf (...other args)
28
+
29
+ # with server
30
+ llama-server -m base_model.gguf --lora MicroAtlas-V1-f16.gguf (...other args)
31
+ ```
32
+
33
+ To know more about LoRA usage with llama.cpp server, refer to the [llama.cpp server documentation](https://github.com/ggerganov/llama.cpp/blob/master/examples/server/README.md).