Amin24 commited on
Commit
62c07c1
1 Parent(s): dfcd6e8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -15,10 +15,10 @@ pip install hezar
15
  ```
16
 
17
  ```python
18
- from hezar import Model
19
 
20
 
21
- model = Model.load("gpt2-base-fa")
22
  text = " در یک اتفاق شگفت انگیز، پژوهشگران"
23
  outputs = model.predict(text)
24
  print(outputs)
 
15
  ```
16
 
17
  ```python
18
+ from hezar.model import Model
19
 
20
 
21
+ model = Model.load("hezarai/gpt2-base-fa")
22
  text = " در یک اتفاق شگفت انگیز، پژوهشگران"
23
  outputs = model.predict(text)
24
  print(outputs)