Moritz-Pfeifer
commited on
Commit
·
617d4d3
1
Parent(s):
1633bf4
Update README.md
Browse files
README.md
CHANGED
@@ -31,7 +31,8 @@ The model is intended to be used for any analysis where the reputation (such as
|
|
31 |
You can use these models in your own applications by leveraging the Hugging Face Transformers library. Below is a Python code snippet demonstrating how to load and use the FT-News classification model:
|
32 |
|
33 |
```python
|
34 |
-
from
|
|
|
35 |
|
36 |
# Load the model
|
37 |
model = AutoPeftModelForCausalLM.from_pretrained("Moritz-Pfeifer/financial-times-classification-llama-2-7b-v1.3")
|
|
|
31 |
You can use these models in your own applications by leveraging the Hugging Face Transformers library. Below is a Python code snippet demonstrating how to load and use the FT-News classification model:
|
32 |
|
33 |
```python
|
34 |
+
from peft import AutoPeftModelForCausalLM
|
35 |
+
from transformers import AutoTokenizer, pipeline
|
36 |
|
37 |
# Load the model
|
38 |
model = AutoPeftModelForCausalLM.from_pretrained("Moritz-Pfeifer/financial-times-classification-llama-2-7b-v1.3")
|