ZJU-Fangyin
commited on
Commit
โข
a2bb4a0
1
Parent(s):
5beaa18
Update README.md
Browse files
README.md
CHANGED
@@ -103,17 +103,12 @@ The drug sensitivity prediction task aims to predict the response of different c
|
|
103 |
|
104 |
<h2 id="3">๐ ๏ธ Quickstart</h2>
|
105 |
|
106 |
-
|
|
|
107 |
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
- **๐จ Train**
|
113 |
-
|
114 |
-
- **โจ๏ธ Generate**
|
115 |
-
|
116 |
-
- **๐ Evaluate**
|
117 |
|
118 |
|
119 |
|
|
|
103 |
|
104 |
<h2 id="3">๐ ๏ธ Quickstart</h2>
|
105 |
|
106 |
+
```python
|
107 |
+
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
|
108 |
|
109 |
+
tokenizer = AutoTokenizer.from_pretrained("zjunlp/chatcell-small")
|
110 |
+
model = AutoModelForSeq2SeqLM.from_pretrained("zjunlp/chatcell-small")
|
111 |
+
```
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
|
113 |
|
114 |
|