├── .github ├── CODEOWNERS ├── CONTRIBUTIONS.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .idea ├── .gitignore ├── aws.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── project-code-py.iml └── vcs.xml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── app.py ├── images └── animoji.jpeg ├── notebooks ├── BenchMarkTest.ipynb ├── distilmodel.ipynb ├── gptneomodel.ipynb ├── microdistilmodel.ipynb └── model.ipynb └── requirements.txt /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/.github/CONTRIBUTIONS.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # Fixes # 2 | 3 | # Proposed Changes 4 | 5 | ## MVP: 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/.idea/aws.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/project-code-py.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/.idea/project-code-py.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/app.py -------------------------------------------------------------------------------- /images/animoji.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/images/animoji.jpeg -------------------------------------------------------------------------------- /notebooks/BenchMarkTest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/notebooks/BenchMarkTest.ipynb -------------------------------------------------------------------------------- /notebooks/distilmodel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/notebooks/distilmodel.ipynb -------------------------------------------------------------------------------- /notebooks/gptneomodel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/notebooks/gptneomodel.ipynb -------------------------------------------------------------------------------- /notebooks/microdistilmodel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/notebooks/microdistilmodel.ipynb -------------------------------------------------------------------------------- /notebooks/model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gagan3012/project-code-py/HEAD/notebooks/model.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit==0.82.0 2 | transformers==4.3.2 3 | torch 4 | --------------------------------------------------------------------------------