Upload 2 files
Browse files- config.json +16 -0
- requirements.txt +10 -0
config.json
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"languages": ["Tamil", "Malayalam", "Telugu"],
|
3 |
+
"modalities": ["Audio", "Text"],
|
4 |
+
"models": {
|
5 |
+
"audio": {
|
6 |
+
"tamil": "audio_models/tamil_audio_model.keras",
|
7 |
+
"malayalam": "audio_models/malayalam_audio_model.keras",
|
8 |
+
"telugu": "audio_models/telugu_audio_model.keras"
|
9 |
+
},
|
10 |
+
"text": {
|
11 |
+
"tamil": "text_models/tamil_text_model.h5",
|
12 |
+
"malayalam": "text_models/malayalam_text_model.h5",
|
13 |
+
"telugu": "text_models/telugu_text_model.h5"
|
14 |
+
}
|
15 |
+
}
|
16 |
+
}
|
requirements.txt
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
tensorflow
|
2 |
+
torch
|
3 |
+
transformers
|
4 |
+
numpy
|
5 |
+
pandas
|
6 |
+
librosa
|
7 |
+
onnxruntime
|
8 |
+
scikit-learn
|
9 |
+
indic-nlp-library
|
10 |
+
advertools
|