GreatCaptainNemo
commited on
Commit
•
a1963ae
1
Parent(s):
ded5fb5
Update README.md
Browse files
README.md
CHANGED
@@ -8,6 +8,14 @@ license: apache-2.0
|
|
8 |
[Github](https://github.com/Lyu6PosHao/ProLLaMA) for more information
|
9 |
|
10 |
ProLLaMA_Stage_1 is based on Llama-2-7b, so please follow the license of Llama2.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
# Quick usage:
|
12 |
```bash
|
13 |
# you can replace the model_path with your local path
|
@@ -109,9 +117,12 @@ if __name__ == '__main__':
|
|
109 |
print("All the outputs have been saved in",args.output_file)
|
110 |
```
|
111 |
|
112 |
-
#
|
113 |
-
```
|
114 |
-
|
115 |
-
|
116 |
-
|
|
|
|
|
|
|
117 |
```
|
|
|
8 |
[Github](https://github.com/Lyu6PosHao/ProLLaMA) for more information
|
9 |
|
10 |
ProLLaMA_Stage_1 is based on Llama-2-7b, so please follow the license of Llama2.
|
11 |
+
|
12 |
+
# Input format:
|
13 |
+
```text
|
14 |
+
Seq=
|
15 |
+
#You can also specify the first few amino acids of the protein sequence:
|
16 |
+
Seq=<MAPGGMPRE
|
17 |
+
```
|
18 |
+
|
19 |
# Quick usage:
|
20 |
```bash
|
21 |
# you can replace the model_path with your local path
|
|
|
117 |
print("All the outputs have been saved in",args.output_file)
|
118 |
```
|
119 |
|
120 |
+
# Citation:
|
121 |
+
```
|
122 |
+
@article{lv2024prollama,
|
123 |
+
title={ProLLaMA: A Protein Large Language Model for Multi-Task Protein Language Processing},
|
124 |
+
author={Lv, Liuzhenghao and Lin, Zongying and Li, Hao and Liu, Yuyang and Cui, Jiaxi and Chen, Calvin Yu-Chian and Yuan, Li and Tian, Yonghong},
|
125 |
+
journal={arXiv preprint arXiv:2402.16445},
|
126 |
+
year={2024}
|
127 |
+
}
|
128 |
```
|