Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
```python
|
| 2 |
from huggingface_hub import login
|
| 3 |
import torch
|
|
|
|
| 1 |
+
# Model Loading and Testing Instructions
|
| 2 |
+
|
| 3 |
+
This document provides step-by-step instructions on how to load our model from the Hugging Face Hub and evaluate it on a test dataset.
|
| 4 |
+
The following code load and test the models on colab notebook.
|
| 5 |
+
|
| 6 |
+
---
|
| 7 |
+
|
| 8 |
+
## Prerequisites
|
| 9 |
+
|
| 10 |
+
1. Install the required Python libraries:
|
| 11 |
+
```bash
|
| 12 |
+
pip install torch transformers pandas scikit-learn huggingface_hub
|
| 13 |
+
|
| 14 |
+
|
| 15 |
```python
|
| 16 |
from huggingface_hub import login
|
| 17 |
import torch
|