blair-johnson commited on
Commit
0d57b8c
1 Parent(s): 02c68ec

Update README.md

Browse files

Basic model card.

Files changed (1) hide show
  1. README.md +55 -1
README.md CHANGED
@@ -8,4 +8,58 @@ tags:
8
  - galactica
9
  - alpaca
10
  - opt
11
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  - galactica
9
  - alpaca
10
  - opt
11
+ ---
12
+
13
+ # GALPACA 30 B (large)
14
+
15
+ GALACTICA 30B fine-tuned on the Alpaca dataset.
16
+
17
+ The model card from the original Galactica repo can be found [here](https://github.com/paperswithcode/galai/blob/main/docs/model_card.md), and the original paper [here](https://galactica.org/paper.pdf).
18
+
19
+ The dataset card for Alpaca can be found [here](https://huggingface.co/datasets/tatsu-lab/alpaca/blob/main/README.md), and the project homepage [here](https://crfm.stanford.edu/2023/03/13/alpaca.html).
20
+ The Alpaca dataset was collected with a modified version of the [Self-Instruct Framework](https://github.com/yizhongw/self-instruct), and was built using OpenAI's `text-davinci-003` model. As such it is subject to OpenAI's terms of service.
21
+
22
+ ## Model Details
23
+
24
+ The GALACTICA models are trained on a large-scale scientific corpus and are designed to perform scientific tasks.
25
+ The Alpaca dataset is a set of 52k instruct-response pairs designed to enhace the instruction following capabilites of pre-trained language models.
26
+
27
+ ## Model Use
28
+
29
+ The GALACTICA model card specifies that the primary indended users of the GALACTICA models are researchers studying language models applied to the scientific domain, and it cautions against production use of GALACTICA without safeguards due to the potential for the model to produce inaccurate information.
30
+ The original GALACTICA models are available under a non-commercial CC BY-NC 4.0 license, and the GALPACA model is additionally subject to the [OpenAI Terms of Service](https://openai.com/policies/terms-of-use).
31
+
32
+ ## Training Data
33
+
34
+ The GALPACA models are trained by fine-tuning pre-trained GALACTICA models on the Alpaca dataset. GALACTICA models were trained on 106 billion tokens of open-access scientific text and data, including papers, textbooks, scientific websites, encyclopedias, and more.
35
+ Fine-tuning the base GALACTICA models on the 52k instruction-response pairs in the Alpaca dataset allows users to query the GALPACA models in an instruct-response fashion.
36
+
37
+ ## How to Use
38
+
39
+ The GALPACA weights are made available for use with the `transformers` library.
40
+ TODO: add example inference usage.
41
+
42
+ ## Performance and Limitations
43
+
44
+ More information about the performance and limitations of this family of models can be found on the original GALACTICA model card.
45
+
46
+ ## Works Cited
47
+
48
+ ```bibtex
49
+ @inproceedings{GALACTICA,
50
+ title={GALACTICA: A Large Language Model for Science},
51
+ author={Ross Taylor and Marcin Kardas and Guillem Cucurull and Thomas Scialom and Anthony Hartshorn and Elvis Saravia and Andrew Poulton and Viktor Kerkez and Robert Stojnic},
52
+ year={2022}
53
+ }
54
+ ```
55
+
56
+ ```bibtex
57
+ @misc{alpaca,
58
+ author = {Rohan Taori and Ishaan Gulrajani and Tianyi Zhang and Yann Dubois and Xuechen Li and Carlos Guestrin and Percy Liang and Tatsunori B. Hashimoto },
59
+ title = {Stanford Alpaca: An Instruction-following LLaMA model},
60
+ year = {2023},
61
+ publisher = {GitHub},
62
+ journal = {GitHub repository},
63
+ howpublished = {\url{https://github.com/tatsu-lab/stanford_alpaca}},
64
+ }
65
+ ```