Upload folder using huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# PRV AI 1.0
|
| 2 |
|
| 3 |
## Model Description
|
| 4 |
-
PRV AI 1.0 is a lightweight and efficient AI model designed for
|
| 5 |
-
natural language processing tasks.
|
| 6 |
|
| 7 |
## Model Details
|
| 8 |
- **Model Name:** PRV AI 1.0
|
|
@@ -22,8 +35,8 @@ natural language processing tasks.
|
|
| 22 |
```python
|
| 23 |
from transformers import MobileBertTokenizer, MobileBertModel
|
| 24 |
|
| 25 |
-
tokenizer = MobileBertTokenizer.from_pretrained("
|
| 26 |
-
model = MobileBertModel.from_pretrained("
|
| 27 |
```
|
| 28 |
|
| 29 |
## Base Model
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: apache-2.0
|
| 5 |
+
tags:
|
| 6 |
+
- text-classification
|
| 7 |
+
- sentiment-analysis
|
| 8 |
+
- question-answering
|
| 9 |
+
- mobilebert
|
| 10 |
+
- lightweight
|
| 11 |
+
base_model: google/mobilebert-uncased
|
| 12 |
+
model_name: PRV AI 1.0
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
# PRV AI 1.0
|
| 16 |
|
| 17 |
## Model Description
|
| 18 |
+
PRV AI 1.0 is a lightweight and efficient AI model designed for natural language processing tasks.
|
|
|
|
| 19 |
|
| 20 |
## Model Details
|
| 21 |
- **Model Name:** PRV AI 1.0
|
|
|
|
| 35 |
```python
|
| 36 |
from transformers import MobileBertTokenizer, MobileBertModel
|
| 37 |
|
| 38 |
+
tokenizer = MobileBertTokenizer.from_pretrained("Prava1/PRV-AI-1.0")
|
| 39 |
+
model = MobileBertModel.from_pretrained("Prava1/PRV-AI-1.0")
|
| 40 |
```
|
| 41 |
|
| 42 |
## Base Model
|