sndtuna commited on
Commit
60d79de
1 Parent(s): 29e7f5e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +104 -0
README.md ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: aaditya/Llama3-OpenBioLLM-8B
3
+ tags:
4
+ - llama-3
5
+ - llama
6
+ - Mixtral
7
+ - instruct
8
+ - finetune
9
+ - chatml
10
+ - DPO
11
+ - RLHF
12
+ - gpt4
13
+ - distillation
14
+ - llama-cpp
15
+ - gguf-my-repo
16
+ license: llama3
17
+ language:
18
+ - en
19
+ widget:
20
+ - example_title: OpenBioLLM-8B
21
+ messages:
22
+ - role: system
23
+ content: You are an expert and experienced from the healthcare and biomedical
24
+ domain with extensive medical knowledge and practical experience.
25
+ - role: user
26
+ content: How long does it take for newborn jaundice to go away?
27
+ output:
28
+ text: 'Newborn jaundice, also known as neonatal jaundice, is a common condition
29
+ in newborns where the yellowing of the skin and eyes occurs due to an elevated
30
+ level of bilirubin in the blood. Bilirubin is a yellow pigment that forms when
31
+ red blood cells break down. In most cases, newborn jaundice resolves on its
32
+ own without any specific treatment.
33
+
34
+ The duration of newborn jaundice can vary depending on several factors such
35
+ as the underlying cause, gestational age at birth, and individual variations
36
+ in bilirubin metabolism. Here are some general guidelines:
37
+
38
+ 1. Physiological jaundice: This is the most common type of newborn jaundice
39
+ and usually appears within 24-72 hours after birth. It tends to peak between
40
+ the second and fifth day of life and gradually improves over the next week or
41
+ two. By the time the baby is one week old, the jaundice should have mostly resolved.
42
+ 2. Breast milk jaundice: This type of jaundice occurs in breastfed babies and
43
+ may appear later than physiological jaundice, typically between the fifth and
44
+ fourteenth day of life. It tends to persist for a longer duration but usually
45
+ resolves within six weeks after birth. 3. Pathological jaundice: This type of
46
+ jaundice is less common and occurs due to an underlying medical condition that
47
+ affects bilirubin metabolism or liver function. The duration of pathological
48
+ jaundice depends on the specific cause and may require treatment.
49
+
50
+ It''s important for parents to monitor their newborn''s jaundice closely and
51
+ seek medical advice if the jaundice progresses rapidly, becomes severe, or is
52
+ accompanied by other symptoms such as poor feeding, lethargy, or excessive sleepiness.
53
+ In these cases, further evaluation and management may be necessary. Remember
54
+ that each baby is unique, and the timing of jaundice resolution can vary. If
55
+ you have concerns about your newborn''s jaundice, it''s always best to consult
56
+ with a healthcare professional for personalized advice and guidance.'
57
+ model-index:
58
+ - name: OpenBioLLM-8B
59
+ results: []
60
+ ---
61
+
62
+ # sndtuna/Llama3-OpenBioLLM-8B-Q8_0-GGUF
63
+ This model was converted to GGUF format from [`aaditya/Llama3-OpenBioLLM-8B`](https://huggingface.co/aaditya/Llama3-OpenBioLLM-8B) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
64
+ Refer to the [original model card](https://huggingface.co/aaditya/Llama3-OpenBioLLM-8B) for more details on the model.
65
+
66
+ ## Use with llama.cpp
67
+ Install llama.cpp through brew (works on Mac and Linux)
68
+
69
+ ```bash
70
+ brew install llama.cpp
71
+
72
+ ```
73
+ Invoke the llama.cpp server or the CLI.
74
+
75
+ ### CLI:
76
+ ```bash
77
+ llama-cli --hf-repo sndtuna/Llama3-OpenBioLLM-8B-Q8_0-GGUF --hf-file llama3-openbiollm-8b-q8_0.gguf -p "The meaning to life and the universe is"
78
+ ```
79
+
80
+ ### Server:
81
+ ```bash
82
+ llama-server --hf-repo sndtuna/Llama3-OpenBioLLM-8B-Q8_0-GGUF --hf-file llama3-openbiollm-8b-q8_0.gguf -c 2048
83
+ ```
84
+
85
+ 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.
86
+
87
+ Step 1: Clone llama.cpp from GitHub.
88
+ ```
89
+ git clone https://github.com/ggerganov/llama.cpp
90
+ ```
91
+
92
+ 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).
93
+ ```
94
+ cd llama.cpp && LLAMA_CURL=1 make
95
+ ```
96
+
97
+ Step 3: Run inference through the main binary.
98
+ ```
99
+ ./llama-cli --hf-repo sndtuna/Llama3-OpenBioLLM-8B-Q8_0-GGUF --hf-file llama3-openbiollm-8b-q8_0.gguf -p "The meaning to life and the universe is"
100
+ ```
101
+ or
102
+ ```
103
+ ./llama-server --hf-repo sndtuna/Llama3-OpenBioLLM-8B-Q8_0-GGUF --hf-file llama3-openbiollm-8b-q8_0.gguf -c 2048
104
+ ```