Upload folder using huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
# English-Amharic Neural Machine Translation
|
| 3 |
+
|
| 4 |
+
This is a transformer-based machine translation model for English to Amharic translation with text normalization.
|
| 5 |
+
|
| 6 |
+
## Model Details
|
| 7 |
+
- Model Type: Transformer
|
| 8 |
+
- Task: Translation
|
| 9 |
+
- Languages: English (en) to Amharic (am)
|
| 10 |
+
- Framework: PyTorch
|
| 11 |
+
- Features: Text Normalization
|
| 12 |
+
|
| 13 |
+
## Files
|
| 14 |
+
- `model.pth`: The trained model weights
|
| 15 |
+
- `eng.vocab`: English vocabulary file
|
| 16 |
+
- `amh.vocab`: Amharic vocabulary file
|
| 17 |
+
- `eng.model`: English model configuration
|
| 18 |
+
- `amh.model`: Amharic model configuration
|
| 19 |
+
- `config.json`: Model configuration and metadata
|
| 20 |
+
|
| 21 |
+
## Usage
|
| 22 |
+
This model can be used for translating English text to Amharic with built-in text normalization.
|
| 23 |
+
|
amh.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ef77bf0b219db54ab1a6930dc53c9389badbd49e9f035cc7d294008aa3b6cdf8
|
| 3 |
+
size 789417
|
amh.vocab
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
config.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"language": [
|
| 3 |
+
"en",
|
| 4 |
+
"am"
|
| 5 |
+
],
|
| 6 |
+
"model_type": "transformer",
|
| 7 |
+
"framework": "pytorch",
|
| 8 |
+
"task": "translation",
|
| 9 |
+
"vocab_files": [
|
| 10 |
+
"eng.vocab",
|
| 11 |
+
"amh.vocab"
|
| 12 |
+
],
|
| 13 |
+
"model_files": [
|
| 14 |
+
"eng.model",
|
| 15 |
+
"amh.model"
|
| 16 |
+
]
|
| 17 |
+
}
|
eng.model
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b209041538768a4df47f6ba712eb865f89b060661ce3ce4734df9132aec0c82b
|
| 3 |
+
size 668297
|
eng.vocab
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4254ce2c1971c39d14818fab0e371a5c0a6460a66797f6a31b3b562ffb7fe406
|
| 3 |
+
size 340566888
|