Navya-Sree commited on
Commit
44e67b0
·
verified ·
1 Parent(s): c1a8034

Create config.py

Browse files
Files changed (1) hide show
  1. config.py +11 -0
config.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Model configuration
2
+ MODEL_CONFIG = {
3
+ "base_model": "facebook/m2m100_418M",
4
+ "cultural_token_id": 250001,
5
+ "max_length": 200,
6
+ "supported_langs": {
7
+ "ay": {"name": "Aymara", "status": "Vulnerable"},
8
+ "chr": {"name": "Cherokee", "status": "Endangered"},
9
+ "qu": {"name": "Quechua", "status": "Vulnerable"}
10
+ }
11
+ }