ZJU-Fangyin commited on
Commit
a2bb4a0
โ€ข
1 Parent(s): 5beaa18

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -10
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
- - **๐Ÿ“š Prepare the data**
 
107
 
108
- **Step1:**
109
-
110
- **Step2:**
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