├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── angular-ui ├── .editorconfig ├── README.md ├── angular.json ├── browserslist ├── e2e │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package.json ├── src │ ├── app │ │ ├── acoustic-adaptation │ │ │ ├── acoustic-adaptation.component.css │ │ │ ├── acoustic-adaptation.component.html │ │ │ ├── acoustic-adaptation.component.spec.ts │ │ │ └── acoustic-adaptation.component.ts │ │ ├── api.service.ts │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── cookie.service.ts │ │ ├── dictation │ │ │ ├── dictation.component.css │ │ │ ├── dictation.component.html │ │ │ ├── dictation.component.spec.ts │ │ │ └── dictation.component.ts │ │ ├── footer │ │ │ ├── footer.component.css │ │ │ ├── footer.component.html │ │ │ ├── footer.component.spec.ts │ │ │ └── footer.component.ts │ │ ├── language-adaptation │ │ │ ├── language-adaptation.component.css │ │ │ ├── language-adaptation.component.html │ │ │ ├── language-adaptation.component.spec.ts │ │ │ └── language-adaptation.component.ts │ │ ├── loader.interceptor.ts │ │ ├── loader.service.ts │ │ ├── loader │ │ │ ├── loader.component.css │ │ │ ├── loader.component.html │ │ │ ├── loader.component.spec.ts │ │ │ └── loader.component.ts │ │ ├── log-in │ │ │ ├── log-in.component.css │ │ │ ├── log-in.component.html │ │ │ ├── log-in.component.spec.ts │ │ │ └── log-in.component.ts │ │ ├── menu │ │ │ ├── menu.component.css │ │ │ ├── menu.component.html │ │ │ ├── menu.component.spec.ts │ │ │ └── menu.component.ts │ │ ├── recorder.service.ts │ │ └── routing │ │ │ └── routing.module.ts │ ├── assets │ │ ├── .gitkeep │ │ └── img │ │ │ ├── GitHub-Mark-120px-plus.png │ │ │ ├── GitHub-Mark-32px.png │ │ │ ├── GitHub-Mark-64px.png │ │ │ ├── email.png │ │ │ ├── gsoc-gfoss.png │ │ │ ├── gsoc.png │ │ │ └── rec.jpg │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json ├── api ├── __init__.py ├── app.py ├── clustering_helper.py ├── convert_num.py ├── database.py ├── dictation_helper.py ├── post_processing_helper.py ├── preprocess_helper.py ├── run.sh └── stop_words.py ├── data ├── README.md └── scripts │ ├── acoustic_adaptation.py │ ├── addFiller.py │ ├── addOOD.py │ ├── converter.py │ ├── createIds.py │ ├── createText.py │ ├── createTranscription.py │ ├── decode.py │ ├── evaluate_domain.py │ ├── findOOD.py │ ├── merge.sh │ ├── print_pickle.py │ ├── rec_unlimited.py │ ├── recorder.py │ ├── replace_xa0.py │ └── splitData.py ├── docs └── pics │ ├── acoustic │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── 6.png │ ├── dictation │ ├── localhost_4200_dictation (1).png │ ├── localhost_4200_dictation (2).png │ ├── localhost_4200_dictation (3).png │ └── localhost_4200_dictation.png │ ├── elbow_10.png │ ├── elbow_5.png │ ├── elbow_8.png │ ├── language │ ├── 1.png │ ├── 2.png │ └── 3.png │ ├── log-in │ ├── 1.png │ ├── 2.png │ └── 3.png │ ├── model.png │ └── model2.png ├── email_clustering ├── classify.py ├── cluster2lm.py ├── clustering.py ├── helper.py ├── kmeans.py ├── stop_words.py ├── train_doc.py └── train_vec.py ├── email_processing ├── build_lm.py ├── classification.py ├── convert_num.py ├── credentials.json ├── extraction.py ├── extraction_from_txt.py └── helper.py ├── post_processing ├── error_corrector.py ├── helper.py ├── ngram_error_detector.py ├── ngram_extractor.py ├── pos_extractor.py └── vector_extractor.py ├── requirements.txt └── speech2text ├── .gitignore ├── build.gradle ├── gradle └── wrapper │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src └── main └── java └── speech2text ├── RecognizerEntryPoint.java └── StreamRecognizer.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/README.md -------------------------------------------------------------------------------- /angular-ui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/.editorconfig -------------------------------------------------------------------------------- /angular-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/README.md -------------------------------------------------------------------------------- /angular-ui/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/angular.json -------------------------------------------------------------------------------- /angular-ui/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/browserslist -------------------------------------------------------------------------------- /angular-ui/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /angular-ui/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/e2e/src/app.po.ts -------------------------------------------------------------------------------- /angular-ui/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/e2e/tsconfig.json -------------------------------------------------------------------------------- /angular-ui/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/karma.conf.js -------------------------------------------------------------------------------- /angular-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/package.json -------------------------------------------------------------------------------- /angular-ui/src/app/acoustic-adaptation/acoustic-adaptation.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/acoustic-adaptation/acoustic-adaptation.component.css -------------------------------------------------------------------------------- /angular-ui/src/app/acoustic-adaptation/acoustic-adaptation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/acoustic-adaptation/acoustic-adaptation.component.html -------------------------------------------------------------------------------- /angular-ui/src/app/acoustic-adaptation/acoustic-adaptation.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/acoustic-adaptation/acoustic-adaptation.component.spec.ts -------------------------------------------------------------------------------- /angular-ui/src/app/acoustic-adaptation/acoustic-adaptation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/acoustic-adaptation/acoustic-adaptation.component.ts -------------------------------------------------------------------------------- /angular-ui/src/app/api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/api.service.ts -------------------------------------------------------------------------------- /angular-ui/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /angular-ui/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-ui/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/app.component.html -------------------------------------------------------------------------------- /angular-ui/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /angular-ui/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/app.component.ts -------------------------------------------------------------------------------- /angular-ui/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/app.module.ts -------------------------------------------------------------------------------- /angular-ui/src/app/cookie.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/cookie.service.ts -------------------------------------------------------------------------------- /angular-ui/src/app/dictation/dictation.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/dictation/dictation.component.css -------------------------------------------------------------------------------- /angular-ui/src/app/dictation/dictation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/dictation/dictation.component.html -------------------------------------------------------------------------------- /angular-ui/src/app/dictation/dictation.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/dictation/dictation.component.spec.ts -------------------------------------------------------------------------------- /angular-ui/src/app/dictation/dictation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/dictation/dictation.component.ts -------------------------------------------------------------------------------- /angular-ui/src/app/footer/footer.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/footer/footer.component.css -------------------------------------------------------------------------------- /angular-ui/src/app/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/footer/footer.component.html -------------------------------------------------------------------------------- /angular-ui/src/app/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /angular-ui/src/app/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/footer/footer.component.ts -------------------------------------------------------------------------------- /angular-ui/src/app/language-adaptation/language-adaptation.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/language-adaptation/language-adaptation.component.css -------------------------------------------------------------------------------- /angular-ui/src/app/language-adaptation/language-adaptation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/language-adaptation/language-adaptation.component.html -------------------------------------------------------------------------------- /angular-ui/src/app/language-adaptation/language-adaptation.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/language-adaptation/language-adaptation.component.spec.ts -------------------------------------------------------------------------------- /angular-ui/src/app/language-adaptation/language-adaptation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/language-adaptation/language-adaptation.component.ts -------------------------------------------------------------------------------- /angular-ui/src/app/loader.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/loader.interceptor.ts -------------------------------------------------------------------------------- /angular-ui/src/app/loader.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/loader.service.ts -------------------------------------------------------------------------------- /angular-ui/src/app/loader/loader.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/loader/loader.component.css -------------------------------------------------------------------------------- /angular-ui/src/app/loader/loader.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/loader/loader.component.html -------------------------------------------------------------------------------- /angular-ui/src/app/loader/loader.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/loader/loader.component.spec.ts -------------------------------------------------------------------------------- /angular-ui/src/app/loader/loader.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/loader/loader.component.ts -------------------------------------------------------------------------------- /angular-ui/src/app/log-in/log-in.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/log-in/log-in.component.css -------------------------------------------------------------------------------- /angular-ui/src/app/log-in/log-in.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/log-in/log-in.component.html -------------------------------------------------------------------------------- /angular-ui/src/app/log-in/log-in.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/log-in/log-in.component.spec.ts -------------------------------------------------------------------------------- /angular-ui/src/app/log-in/log-in.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/log-in/log-in.component.ts -------------------------------------------------------------------------------- /angular-ui/src/app/menu/menu.component.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .last{ 4 | float: right; 5 | } 6 | -------------------------------------------------------------------------------- /angular-ui/src/app/menu/menu.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/menu/menu.component.html -------------------------------------------------------------------------------- /angular-ui/src/app/menu/menu.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/menu/menu.component.spec.ts -------------------------------------------------------------------------------- /angular-ui/src/app/menu/menu.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/menu/menu.component.ts -------------------------------------------------------------------------------- /angular-ui/src/app/recorder.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/recorder.service.ts -------------------------------------------------------------------------------- /angular-ui/src/app/routing/routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/app/routing/routing.module.ts -------------------------------------------------------------------------------- /angular-ui/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /angular-ui/src/assets/img/GitHub-Mark-120px-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/assets/img/GitHub-Mark-120px-plus.png -------------------------------------------------------------------------------- /angular-ui/src/assets/img/GitHub-Mark-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/assets/img/GitHub-Mark-32px.png -------------------------------------------------------------------------------- /angular-ui/src/assets/img/GitHub-Mark-64px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/assets/img/GitHub-Mark-64px.png -------------------------------------------------------------------------------- /angular-ui/src/assets/img/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/assets/img/email.png -------------------------------------------------------------------------------- /angular-ui/src/assets/img/gsoc-gfoss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/assets/img/gsoc-gfoss.png -------------------------------------------------------------------------------- /angular-ui/src/assets/img/gsoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/assets/img/gsoc.png -------------------------------------------------------------------------------- /angular-ui/src/assets/img/rec.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/assets/img/rec.jpg -------------------------------------------------------------------------------- /angular-ui/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /angular-ui/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/environments/environment.ts -------------------------------------------------------------------------------- /angular-ui/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/favicon.ico -------------------------------------------------------------------------------- /angular-ui/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/index.html -------------------------------------------------------------------------------- /angular-ui/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/main.ts -------------------------------------------------------------------------------- /angular-ui/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/polyfills.ts -------------------------------------------------------------------------------- /angular-ui/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/styles.css -------------------------------------------------------------------------------- /angular-ui/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/src/test.ts -------------------------------------------------------------------------------- /angular-ui/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/tsconfig.app.json -------------------------------------------------------------------------------- /angular-ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/tsconfig.json -------------------------------------------------------------------------------- /angular-ui/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/tsconfig.spec.json -------------------------------------------------------------------------------- /angular-ui/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/angular-ui/tslint.json -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/api/app.py -------------------------------------------------------------------------------- /api/clustering_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/api/clustering_helper.py -------------------------------------------------------------------------------- /api/convert_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/api/convert_num.py -------------------------------------------------------------------------------- /api/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/api/database.py -------------------------------------------------------------------------------- /api/dictation_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/api/dictation_helper.py -------------------------------------------------------------------------------- /api/post_processing_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/api/post_processing_helper.py -------------------------------------------------------------------------------- /api/preprocess_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/api/preprocess_helper.py -------------------------------------------------------------------------------- /api/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/api/run.sh -------------------------------------------------------------------------------- /api/stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/api/stop_words.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/data/README.md -------------------------------------------------------------------------------- /data/scripts/acoustic_adaptation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/data/scripts/acoustic_adaptation.py -------------------------------------------------------------------------------- /data/scripts/addFiller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/data/scripts/addFiller.py -------------------------------------------------------------------------------- /data/scripts/addOOD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/data/scripts/addOOD.py -------------------------------------------------------------------------------- /data/scripts/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/data/scripts/converter.py -------------------------------------------------------------------------------- /data/scripts/createIds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/data/scripts/createIds.py -------------------------------------------------------------------------------- /data/scripts/createText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/data/scripts/createText.py -------------------------------------------------------------------------------- /data/scripts/createTranscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/data/scripts/createTranscription.py -------------------------------------------------------------------------------- /data/scripts/decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/data/scripts/decode.py -------------------------------------------------------------------------------- /data/scripts/evaluate_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/data/scripts/evaluate_domain.py -------------------------------------------------------------------------------- /data/scripts/findOOD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/data/scripts/findOOD.py -------------------------------------------------------------------------------- /data/scripts/merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/data/scripts/merge.sh -------------------------------------------------------------------------------- /data/scripts/print_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/data/scripts/print_pickle.py -------------------------------------------------------------------------------- /data/scripts/rec_unlimited.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/data/scripts/rec_unlimited.py -------------------------------------------------------------------------------- /data/scripts/recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/data/scripts/recorder.py -------------------------------------------------------------------------------- /data/scripts/replace_xa0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/data/scripts/replace_xa0.py -------------------------------------------------------------------------------- /data/scripts/splitData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/data/scripts/splitData.py -------------------------------------------------------------------------------- /docs/pics/acoustic/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/acoustic/1.png -------------------------------------------------------------------------------- /docs/pics/acoustic/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/acoustic/2.png -------------------------------------------------------------------------------- /docs/pics/acoustic/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/acoustic/3.png -------------------------------------------------------------------------------- /docs/pics/acoustic/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/acoustic/4.png -------------------------------------------------------------------------------- /docs/pics/acoustic/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/acoustic/5.png -------------------------------------------------------------------------------- /docs/pics/acoustic/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/acoustic/6.png -------------------------------------------------------------------------------- /docs/pics/dictation/localhost_4200_dictation (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/dictation/localhost_4200_dictation (1).png -------------------------------------------------------------------------------- /docs/pics/dictation/localhost_4200_dictation (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/dictation/localhost_4200_dictation (2).png -------------------------------------------------------------------------------- /docs/pics/dictation/localhost_4200_dictation (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/dictation/localhost_4200_dictation (3).png -------------------------------------------------------------------------------- /docs/pics/dictation/localhost_4200_dictation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/dictation/localhost_4200_dictation.png -------------------------------------------------------------------------------- /docs/pics/elbow_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/elbow_10.png -------------------------------------------------------------------------------- /docs/pics/elbow_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/elbow_5.png -------------------------------------------------------------------------------- /docs/pics/elbow_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/elbow_8.png -------------------------------------------------------------------------------- /docs/pics/language/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/language/1.png -------------------------------------------------------------------------------- /docs/pics/language/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/language/2.png -------------------------------------------------------------------------------- /docs/pics/language/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/language/3.png -------------------------------------------------------------------------------- /docs/pics/log-in/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/log-in/1.png -------------------------------------------------------------------------------- /docs/pics/log-in/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/log-in/2.png -------------------------------------------------------------------------------- /docs/pics/log-in/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/log-in/3.png -------------------------------------------------------------------------------- /docs/pics/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/model.png -------------------------------------------------------------------------------- /docs/pics/model2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/docs/pics/model2.png -------------------------------------------------------------------------------- /email_clustering/classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/email_clustering/classify.py -------------------------------------------------------------------------------- /email_clustering/cluster2lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/email_clustering/cluster2lm.py -------------------------------------------------------------------------------- /email_clustering/clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/email_clustering/clustering.py -------------------------------------------------------------------------------- /email_clustering/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/email_clustering/helper.py -------------------------------------------------------------------------------- /email_clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/email_clustering/kmeans.py -------------------------------------------------------------------------------- /email_clustering/stop_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/email_clustering/stop_words.py -------------------------------------------------------------------------------- /email_clustering/train_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/email_clustering/train_doc.py -------------------------------------------------------------------------------- /email_clustering/train_vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/email_clustering/train_vec.py -------------------------------------------------------------------------------- /email_processing/build_lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/email_processing/build_lm.py -------------------------------------------------------------------------------- /email_processing/classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/email_processing/classification.py -------------------------------------------------------------------------------- /email_processing/convert_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/email_processing/convert_num.py -------------------------------------------------------------------------------- /email_processing/credentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/email_processing/credentials.json -------------------------------------------------------------------------------- /email_processing/extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/email_processing/extraction.py -------------------------------------------------------------------------------- /email_processing/extraction_from_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/email_processing/extraction_from_txt.py -------------------------------------------------------------------------------- /email_processing/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/email_processing/helper.py -------------------------------------------------------------------------------- /post_processing/error_corrector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/post_processing/error_corrector.py -------------------------------------------------------------------------------- /post_processing/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/post_processing/helper.py -------------------------------------------------------------------------------- /post_processing/ngram_error_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/post_processing/ngram_error_detector.py -------------------------------------------------------------------------------- /post_processing/ngram_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/post_processing/ngram_extractor.py -------------------------------------------------------------------------------- /post_processing/pos_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/post_processing/pos_extractor.py -------------------------------------------------------------------------------- /post_processing/vector_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/post_processing/vector_extractor.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/requirements.txt -------------------------------------------------------------------------------- /speech2text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/speech2text/.gitignore -------------------------------------------------------------------------------- /speech2text/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/speech2text/build.gradle -------------------------------------------------------------------------------- /speech2text/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/speech2text/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /speech2text/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/speech2text/gradlew -------------------------------------------------------------------------------- /speech2text/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/speech2text/gradlew.bat -------------------------------------------------------------------------------- /speech2text/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/speech2text/settings.gradle -------------------------------------------------------------------------------- /speech2text/src/main/java/speech2text/RecognizerEntryPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/speech2text/src/main/java/speech2text/RecognizerEntryPoint.java -------------------------------------------------------------------------------- /speech2text/src/main/java/speech2text/StreamRecognizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eellak/gsoc2019-sphinx/HEAD/speech2text/src/main/java/speech2text/StreamRecognizer.java --------------------------------------------------------------------------------