├── Documentation ├── Additional Notes │ ├── General_Notes.docx │ └── Viola-Jones.docx ├── Base Papers │ ├── Base_Paper-1-Large-ScaleVisualSpeechRecognition.pdf │ └── Base_Paper-2-lipreading-by-neural-networks-visual-preprocessing-learning-and-sensory-integration.pdf ├── CSI │ ├── 2020_CSE_14_CSI-PAPER.docx │ └── 2020_CSE_14_CSI-PAPER.pdf ├── FlowCharts and Architecture │ ├── CNN_Architecture.png │ └── FlowChart.png ├── Literature Survey │ ├── Ref-1_automatic lip reading.pdf │ ├── Ref-2_largescale visual speech recognition.pdf │ ├── Ref-3_Lele_Chen_Lip_Movements_Generation_ECCV_2018_paper.pdf │ ├── Ref-4_imroving speaker independent lipreading with domain adversarial training.pdf │ └── Ref-5_lipreading sentences in the wild.pdf ├── PPT's │ ├── CSI_CSIAMSPID013.pptx │ ├── FIRST_REVIEW_2020_CSE_14.pptx │ └── ZEROTH_PHASE_INTUITIVEPERCEPTION_BATCH_2020_CSE_14.pptx ├── Problem Statement_2020_CSE_14 .pdf └── Project_Phase_1_Report_Team_14 .pdf ├── README.md ├── images ├── IP_Screen_1.jpeg ├── IP_Scren_2.jpeg ├── Input_Video.jpeg └── Output.jpeg └── src ├── GRID ├── bbaf2n.mpg ├── brbk7n.mpg ├── lbax4n.mpg ├── pwij3p.mpg ├── srin6a.mpg └── swiz3n.mpg ├── Perception.exe ├── Scripts ├── cascade_files │ ├── haarcascade_frontalface_default.xml │ └── haarcascade_mcs_mouth.xml ├── extract_mouth_batch.py ├── face.py ├── mouth_extract.py └── videos.py ├── common └── dictionaries │ ├── big.txt │ └── grid.txt ├── cropped_face ├── face_175.jpg ├── face_176.jpg ├── face_177.jpg ├── face_178.jpg ├── face_179.jpg ├── face_180.jpg ├── face_181.jpg ├── face_182.jpg ├── face_183.jpg ├── face_184.jpg ├── face_185.jpg ├── face_186.jpg ├── face_187.jpg ├── face_188.jpg ├── face_189.jpg ├── face_190.jpg ├── face_191.jpg ├── face_192.jpg ├── face_193.jpg ├── face_194.jpg ├── face_195.jpg ├── face_196.jpg ├── face_197.jpg ├── face_198.jpg ├── face_200.jpg ├── face_201.jpg ├── face_202.jpg ├── face_203.jpg ├── face_204.jpg ├── face_205.jpg ├── face_206.jpg ├── face_207.jpg ├── face_208.jpg ├── face_209.jpg ├── face_210.jpg ├── face_211.jpg ├── face_212.jpg ├── face_213.jpg └── face_214.jpg ├── evaluation ├── phonemes.txt ├── predict.py └── predict_batch.py ├── mouth_scripts ├── aligns.py ├── model2.py └── videos.py ├── page.py ├── setup.py └── training └── overlapped_speakers ├── prepare.py └── train.py /Documentation/Additional Notes/General_Notes.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/Documentation/Additional Notes/General_Notes.docx -------------------------------------------------------------------------------- /Documentation/Additional Notes/Viola-Jones.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/Documentation/Additional Notes/Viola-Jones.docx -------------------------------------------------------------------------------- /Documentation/Base Papers/Base_Paper-1-Large-ScaleVisualSpeechRecognition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/Documentation/Base Papers/Base_Paper-1-Large-ScaleVisualSpeechRecognition.pdf -------------------------------------------------------------------------------- /Documentation/Base Papers/Base_Paper-2-lipreading-by-neural-networks-visual-preprocessing-learning-and-sensory-integration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/Documentation/Base Papers/Base_Paper-2-lipreading-by-neural-networks-visual-preprocessing-learning-and-sensory-integration.pdf -------------------------------------------------------------------------------- /Documentation/CSI/2020_CSE_14_CSI-PAPER.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/Documentation/CSI/2020_CSE_14_CSI-PAPER.docx -------------------------------------------------------------------------------- /Documentation/CSI/2020_CSE_14_CSI-PAPER.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/Documentation/CSI/2020_CSE_14_CSI-PAPER.pdf -------------------------------------------------------------------------------- /Documentation/FlowCharts and Architecture/CNN_Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/Documentation/FlowCharts and Architecture/CNN_Architecture.png -------------------------------------------------------------------------------- /Documentation/FlowCharts and Architecture/FlowChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/Documentation/FlowCharts and Architecture/FlowChart.png -------------------------------------------------------------------------------- /Documentation/Literature Survey/Ref-1_automatic lip reading.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/Documentation/Literature Survey/Ref-1_automatic lip reading.pdf -------------------------------------------------------------------------------- /Documentation/Literature Survey/Ref-2_largescale visual speech recognition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/Documentation/Literature Survey/Ref-2_largescale visual speech recognition.pdf -------------------------------------------------------------------------------- /Documentation/Literature Survey/Ref-3_Lele_Chen_Lip_Movements_Generation_ECCV_2018_paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/Documentation/Literature Survey/Ref-3_Lele_Chen_Lip_Movements_Generation_ECCV_2018_paper.pdf -------------------------------------------------------------------------------- /Documentation/Literature Survey/Ref-4_imroving speaker independent lipreading with domain adversarial training.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/Documentation/Literature Survey/Ref-4_imroving speaker independent lipreading with domain adversarial training.pdf -------------------------------------------------------------------------------- /Documentation/Literature Survey/Ref-5_lipreading sentences in the wild.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/Documentation/Literature Survey/Ref-5_lipreading sentences in the wild.pdf -------------------------------------------------------------------------------- /Documentation/PPT's/CSI_CSIAMSPID013.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/Documentation/PPT's/CSI_CSIAMSPID013.pptx -------------------------------------------------------------------------------- /Documentation/PPT's/FIRST_REVIEW_2020_CSE_14.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/Documentation/PPT's/FIRST_REVIEW_2020_CSE_14.pptx -------------------------------------------------------------------------------- /Documentation/PPT's/ZEROTH_PHASE_INTUITIVEPERCEPTION_BATCH_2020_CSE_14.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/Documentation/PPT's/ZEROTH_PHASE_INTUITIVEPERCEPTION_BATCH_2020_CSE_14.pptx -------------------------------------------------------------------------------- /Documentation/Problem Statement_2020_CSE_14 .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/Documentation/Problem Statement_2020_CSE_14 .pdf -------------------------------------------------------------------------------- /Documentation/Project_Phase_1_Report_Team_14 .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/Documentation/Project_Phase_1_Report_Team_14 .pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/README.md -------------------------------------------------------------------------------- /images/IP_Screen_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/images/IP_Screen_1.jpeg -------------------------------------------------------------------------------- /images/IP_Scren_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/images/IP_Scren_2.jpeg -------------------------------------------------------------------------------- /images/Input_Video.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/images/Input_Video.jpeg -------------------------------------------------------------------------------- /images/Output.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/images/Output.jpeg -------------------------------------------------------------------------------- /src/GRID/bbaf2n.mpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/GRID/bbaf2n.mpg -------------------------------------------------------------------------------- /src/GRID/brbk7n.mpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/GRID/brbk7n.mpg -------------------------------------------------------------------------------- /src/GRID/lbax4n.mpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/GRID/lbax4n.mpg -------------------------------------------------------------------------------- /src/GRID/pwij3p.mpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/GRID/pwij3p.mpg -------------------------------------------------------------------------------- /src/GRID/srin6a.mpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/GRID/srin6a.mpg -------------------------------------------------------------------------------- /src/GRID/swiz3n.mpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/GRID/swiz3n.mpg -------------------------------------------------------------------------------- /src/Perception.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/Perception.exe -------------------------------------------------------------------------------- /src/Scripts/cascade_files/haarcascade_frontalface_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/Scripts/cascade_files/haarcascade_frontalface_default.xml -------------------------------------------------------------------------------- /src/Scripts/cascade_files/haarcascade_mcs_mouth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/Scripts/cascade_files/haarcascade_mcs_mouth.xml -------------------------------------------------------------------------------- /src/Scripts/extract_mouth_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/Scripts/extract_mouth_batch.py -------------------------------------------------------------------------------- /src/Scripts/face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/Scripts/face.py -------------------------------------------------------------------------------- /src/Scripts/mouth_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/Scripts/mouth_extract.py -------------------------------------------------------------------------------- /src/Scripts/videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/Scripts/videos.py -------------------------------------------------------------------------------- /src/common/dictionaries/big.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/common/dictionaries/big.txt -------------------------------------------------------------------------------- /src/common/dictionaries/grid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/common/dictionaries/grid.txt -------------------------------------------------------------------------------- /src/cropped_face/face_175.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_175.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_176.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_176.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_177.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_177.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_178.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_178.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_179.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_179.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_180.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_181.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_181.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_182.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_182.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_183.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_183.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_184.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_184.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_185.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_185.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_186.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_186.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_187.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_187.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_188.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_188.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_189.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_189.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_190.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_190.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_191.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_191.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_192.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_192.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_193.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_193.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_194.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_194.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_195.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_195.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_196.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_196.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_197.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_197.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_198.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_198.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_200.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_201.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_201.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_202.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_202.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_203.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_203.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_204.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_204.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_205.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_205.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_206.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_206.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_207.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_207.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_208.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_208.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_209.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_209.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_210.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_210.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_211.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_211.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_212.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_212.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_213.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_213.jpg -------------------------------------------------------------------------------- /src/cropped_face/face_214.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/cropped_face/face_214.jpg -------------------------------------------------------------------------------- /src/evaluation/phonemes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/evaluation/phonemes.txt -------------------------------------------------------------------------------- /src/evaluation/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/evaluation/predict.py -------------------------------------------------------------------------------- /src/evaluation/predict_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/evaluation/predict_batch.py -------------------------------------------------------------------------------- /src/mouth_scripts/aligns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/mouth_scripts/aligns.py -------------------------------------------------------------------------------- /src/mouth_scripts/model2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/mouth_scripts/model2.py -------------------------------------------------------------------------------- /src/mouth_scripts/videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/mouth_scripts/videos.py -------------------------------------------------------------------------------- /src/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/page.py -------------------------------------------------------------------------------- /src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/setup.py -------------------------------------------------------------------------------- /src/training/overlapped_speakers/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/training/overlapped_speakers/prepare.py -------------------------------------------------------------------------------- /src/training/overlapped_speakers/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saisnehasv/LipReading_ML_2020_CSE_14/HEAD/src/training/overlapped_speakers/train.py --------------------------------------------------------------------------------