GreatCaptainNemo
commited on
Commit
•
1d7e28c
1
Parent(s):
f8407d3
Update README.md
Browse files
README.md
CHANGED
@@ -12,9 +12,6 @@ ProLLaMA_Stage_1 is based on Llama-2-7b, so please follow the license of Llama2.
|
|
12 |
```bash
|
13 |
# you can replace the model_path with your local path
|
14 |
CUDA_VISIBLE_DEVICES=0 python main.py --model "GreatCaptainNemo/ProLLaMA_Stage_1" --interactive
|
15 |
-
# For example:
|
16 |
-
# Input:Seq=
|
17 |
-
# Then the model outputs:Seq=<xxxxxxxxxxxx>
|
18 |
# main.py is as follows 👇:
|
19 |
```
|
20 |
|
@@ -110,4 +107,11 @@ if __name__ == '__main__':
|
|
110 |
with open(args.output_file,'w') as f:
|
111 |
f.write("\n".join(outputs))
|
112 |
print("All the outputs have been saved in",args.output_file)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
```
|
|
|
12 |
```bash
|
13 |
# you can replace the model_path with your local path
|
14 |
CUDA_VISIBLE_DEVICES=0 python main.py --model "GreatCaptainNemo/ProLLaMA_Stage_1" --interactive
|
|
|
|
|
|
|
15 |
# main.py is as follows 👇:
|
16 |
```
|
17 |
|
|
|
107 |
with open(args.output_file,'w') as f:
|
108 |
f.write("\n".join(outputs))
|
109 |
print("All the outputs have been saved in",args.output_file)
|
110 |
+
```
|
111 |
+
|
112 |
+
# Input format:
|
113 |
+
```text
|
114 |
+
Seq=
|
115 |
+
#You can also specify the first few amino acids of the protein sequence:
|
116 |
+
Seq=<MAPGGMPRE
|
117 |
```
|