HummingbirdCake commited on
Commit
12cc4a4
·
verified ·
1 Parent(s): 98f20a1

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ pipeline_tag: text-to-speech
5
+ license: apache-2.0
6
+ base_model: nyuuzyou/Orpheus-3B-ASMR-LoRA
7
+ datasets:
8
+ - nyuuzyou/asmr
9
+ tags:
10
+ - asmr
11
+ - lora
12
+ - llama-cpp
13
+ - gguf-my-lora
14
+ co2_eq_emissions:
15
+ emissions: 1280
16
+ source: Calculated based on power consumption and regional carbon intensity
17
+ training_type: fine-tuning
18
+ geographical_location: Chelyabinsk, Russia
19
+ hardware_used: 1 RTX 4090 GPU
20
+ ---
21
+
22
+ # HummingbirdCake/Orpheus-3B-ASMR-LoRA-Q8_0-GGUF
23
+ This LoRA adapter was converted to GGUF format from [`nyuuzyou/Orpheus-3B-ASMR-LoRA`](https://huggingface.co/nyuuzyou/Orpheus-3B-ASMR-LoRA) via the ggml.ai's [GGUF-my-lora](https://huggingface.co/spaces/ggml-org/gguf-my-lora) space.
24
+ Refer to the [original adapter repository](https://huggingface.co/nyuuzyou/Orpheus-3B-ASMR-LoRA) for more details.
25
+
26
+ ## Use with llama.cpp
27
+
28
+ ```bash
29
+ # with cli
30
+ llama-cli -m base_model.gguf --lora Orpheus-3B-ASMR-LoRA-q8_0.gguf (...other args)
31
+
32
+ # with server
33
+ llama-server -m base_model.gguf --lora Orpheus-3B-ASMR-LoRA-q8_0.gguf (...other args)
34
+ ```
35
+
36
+ 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).