akkirajubhavana commited on
Commit
1a98341
Β·
verified Β·
1 Parent(s): 965e0f6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -5
app.py CHANGED
@@ -52,12 +52,19 @@ demo_metadata = [
52
  ]
53
  asset_store.metadata_providers.append(InProcAssetMetadataProvider(demo_metadata))
54
 
55
- DESCRIPTION = """\
56
- #IIITH-SLT - Speech Translation demo for Indian Language using weakly labeled data \
57
 
58
- End-to-End Speech Translation demo for low resource Indian language using weakly labeled data
59
- Supports ST models for Bengali-Hindi, Malayalam-Hindi, Odia-Hindi, and Telugu-Hindi, trained on the Shrutilipi-anuvaad dataset.
60
- [Paper](https://arxiv.org/pdf/2506.16251)
 
 
 
 
 
 
 
61
  """
62
 
63
  CACHE_EXAMPLES = os.getenv("CACHE_EXAMPLES") == "1" and torch.cuda.is_available()
 
52
  ]
53
  asset_store.metadata_providers.append(InProcAssetMetadataProvider(demo_metadata))
54
 
55
+ DESCRIPTION = """
56
+ IIITH-SLT - Speech Translation demo for Indian Language using weakly labeled data
57
 
58
+ End-to-End Speech Translation demo for low resource Indian language using weakly labeled data.
59
+ Supports ST models for:
60
+ - Bengali β†’ Hindi
61
+ - Malayalam β†’ Hindi
62
+ - Odia β†’ Hindi
63
+ - Telugu β†’ Hindi
64
+
65
+ Trained on the Shrutilipi-anuvaad dataset.
66
+
67
+ Paper: https://arxiv.org/pdf/2506.16251
68
  """
69
 
70
  CACHE_EXAMPLES = os.getenv("CACHE_EXAMPLES") == "1" and torch.cuda.is_available()