Commit
·
0fe7ea7
1
Parent(s):
802c421
Update README.md
Browse files
README.md
CHANGED
|
@@ -55,7 +55,11 @@ However, it does not use class weighting.
|
|
| 55 |
|
| 56 |
## Using the Model
|
| 57 |
|
| 58 |
-
To use, try running:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
```python
|
| 60 |
from transformers import AutoModelForTokenClassification, AutoTokenizer
|
| 61 |
from peft import PeftModel
|
|
|
|
| 55 |
|
| 56 |
## Using the Model
|
| 57 |
|
| 58 |
+
To use the model, try running the following pip install statements:
|
| 59 |
+
```python
|
| 60 |
+
!pip install transformers peft -q
|
| 61 |
+
```
|
| 62 |
+
then try tunning:
|
| 63 |
```python
|
| 64 |
from transformers import AutoModelForTokenClassification, AutoTokenizer
|
| 65 |
from peft import PeftModel
|