zechang commited on
Commit
cedbb16
·
1 Parent(s): 48b2469

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -0
README.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ datasets:
4
+ - arxiv_dataset
5
+ language:
6
+ - en
7
+ pipeline_tag: text-generation
8
+ tags:
9
+ - astronomy
10
+ - science
11
+ - LLM
12
+ ---
13
+
14
+ # AstroLLaMA.gguf
15
+
16
+ [AstroLLaMA](https://huggingface.co/universeTBD/astrollama) in GPT-Generated Unified Format.
17
+
18
+ ![](https://huggingface.co/universeTBD/astrollama/resolve/main/images/astrollama-logo.png)
19
+
20
+ ## What's GPT-Generated Unified Format?
21
+
22
+ GGUF is file format used for storing models for inference, particularly in the context of language models like GPT. GGUF models **could be run on CPUs**, which made them accessible to a wider range of users.
23
+
24
+ More detailed description can be found [here](https://medium.com/@phillipgimmi/what-is-gguf-and-ggml-e364834d241c).
25
+
26
+ ## How to play with AstroLLaMA on your laptop?
27
+
28
+ 1. Install [ollama](https://github.com/jmorganca/ollama);
29
+ 2. Download `astrollama.gguf` to your PC;
30
+ 3. Create a file named Modelfile, and add a FROM instruction with the local filepath to AstroLLaMA, e.g.,
31
+ ```
32
+ FROM ./astrollama.gguf
33
+ ```
34
+ 4. Create the model in Ollama
35
+ ```
36
+ ollama create astrollama -f path_to_modelfile
37
+ ```
38
+ 5. Run AstroLLaMA locally
39
+ ```
40
+ ollama run astrollama
41
+ ```