-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
terms section added & footer links added
- Loading branch information
1 parent
ce6f646
commit 404759f
Showing
2 changed files
with
74 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import React from "react"; | ||
|
||
const information = [ | ||
{ | ||
title: "1. Introduction", | ||
detail: | ||
"The number of tools which are available in Indian languages to subitle audio and videos in Indian languages are almost none. Yet that shouldn't be the case, as now there are lot of open-source models supporting speech transcription in most of official Indian languages. This tool can be useful for subtitling audios and videos like Indian cinemas for Media Industry in general.", | ||
license: { | ||
name: "GNU General Public License v2.0", | ||
detail: | ||
"The GNU GPL is the most widely used free software license and has a strong copyleft requirement. When distributing derived works, the source code of the work must be made available under the same license. There are multiple variants of the GNU GPL, each with different requirements.", | ||
}, | ||
}, | ||
{ | ||
title: "2. Models Used", | ||
detail: | ||
"Due to advent of new technologies like Meta's seamless M4T model and Whisper fine-tuned models, you can do speech transcription to transcribe audio's from source audio to source text. With this a Hindi audio can be transcribed to Hindi text for generating subtitles. Meta's seamless M4T model also supports translation which can take Hindi audio and generate subtitle in languages like English, French, Malayalam etc.", | ||
}, | ||
{ | ||
title: "2a. faster-whisper", | ||
detail: | ||
"faster-whisper is a reimplementation of OpenAI's Whisper model using CTranslate2, which is a fast inference engine for Transformer models.This implementation is up to 4 times faster than openai/whisper for the same accuracy while using less memory. The efficiency can be further improved with 8-bit quantization on both CPU and GPU.", | ||
license: { | ||
name: "MIT License", | ||
detail: | ||
"A short and simple permissive license with conditions only requiring preservation of copyright and license notices. Licensed works, modifications, and larger works may be distributed under different terms and without source code.", | ||
}, | ||
}, | ||
{ | ||
title: "2b. SeamlessM4T", | ||
detail: | ||
"Seamless is a family of AI models that enable more natural and authentic communication across languages. SeamlessM4T is a massive multilingual multimodal machine translation model supporting around 100 languages. SeamlessM4T serves as foundation for SeamlessExpressive, a model that preserves elements of prosody and voice style across languages and SeamlessStreaming, a model supporting simultaneous translation and streaming ASR for around 100 languages. SeamlessExpressive and SeamlessStreaming are combined into Seamless, a unified model featuring multilinguality, real-time and expressive translations.", | ||
license: { | ||
name: "Attribution-NonCommercial 4.0 International", | ||
detail: | ||
"A license that allows for sharing and remixing of creative works while requiring attribution and prohibiting commercial use", | ||
}, | ||
}, | ||
]; | ||
|
||
export default function term() { | ||
return ( | ||
<main className=" flex flex-col md:items-center mx-2 md:mx-0"> | ||
<h1 className="font-serif md:w-[40%] text-3xl md:text-5xl mb-8"> | ||
Indic Subtitler Terms & Licenses | ||
</h1> | ||
{information.map((element, index) => ( | ||
<div className="md:w-[40%] mb-12 " key={index}> | ||
<h2 className="mb-2 font-semibold">{element.title}</h2> | ||
<p className="">{element.detail}</p> | ||
{element.license && ( | ||
<> | ||
<h3 className="mt-2 font-medium"> | ||
License: {element.license.name} | ||
</h3> | ||
<p className="">{element.license.detail}</p> | ||
</> | ||
)} | ||
</div> | ||
))} | ||
</main> | ||
); | ||
} |