Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,47 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
---
|
4 |
+
|
5 |
+
# Model Card for Model ID
|
6 |
+
|
7 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
8 |
+
|
9 |
+
This model is optimized for Material Science by continuing pertaining on over 1 million Material science academic articles based on LLaMa-2-7b. And further finetuned on materials science instructions.
|
10 |
+
|
11 |
+
|
12 |
+
- **Developed by:** [UCSB]
|
13 |
+
- **Language(s) (NLP):** [More Information Needed]
|
14 |
+
- **License:** [More Information Needed]
|
15 |
+
- **Finetuned from model [optional]:** [LLaMa-2]
|
16 |
+
|
17 |
+
- **Paper [optional]:** [https://arxiv.org/pdf/2401.01089.pdf]
|
18 |
+
- **Demo [optional]:** [More Information Needed]
|
19 |
+
|
20 |
+
## How to Get Started with the Model
|
21 |
+
```python
|
22 |
+
from transformers import LlamaTokenizer, LlamaForCausalLM
|
23 |
+
import torch
|
24 |
+
|
25 |
+
tokenizer = LlamaTokenizer.from_pretrained("Xianjun/Quokka-7b-instruct ")
|
26 |
+
model = LlamaForCausalLM.from_pretrained("Xianjun/Quokka-7b-instruct ").half().to("cuda")
|
27 |
+
|
28 |
+
instruction = "How to ..."
|
29 |
+
batch = tokenizer(instruction, return_tensors="pt", add_special_tokens=False).to("cuda")
|
30 |
+
with torch.no_grad():
|
31 |
+
output = model.generate(**batch, max_new_tokens=512, temperature=0.7, do_sample=True)
|
32 |
+
response = tokenizer.decode(output[0], skip_special_tokens=True)
|
33 |
+
```
|
34 |
+
|
35 |
+
## Citation
|
36 |
+
If you find Quokka useful in your research, please cite the following paper:
|
37 |
+
|
38 |
+
```latex
|
39 |
+
@inproceedings{Yang2024QuokkaAO,
|
40 |
+
title={Quokka: An Open-source Large Language Model ChatBot for Material Science},
|
41 |
+
author={Xianjun Yang and Stephen Wilson and Linda Ruth Petzold},
|
42 |
+
year={2024},
|
43 |
+
url={https://api.semanticscholar.org/CorpusID:266725577}
|
44 |
+
}
|
45 |
+
```
|
46 |
+
|
47 |
+
|