├── .DS_Store ├── .gitignore ├── Build_an_AI_Startup_with_PyTorch.ipynb ├── LICENSE ├── README.md ├── app ├── .DS_Store ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── .DS_Store │ ├── androidTest │ └── java │ │ └── com │ │ └── flatfisher │ │ └── dialogflowchatbotsample │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── .DS_Store │ ├── java │ │ └── com │ │ │ └── flatfisher │ │ │ └── dialogflowchatbotsample │ │ │ ├── LanguageConfig.java │ │ │ ├── LoginActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── Payments.java │ │ │ └── User.java │ └── res │ │ ├── .DS_Store │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── button.png │ │ ├── button2.png │ │ ├── ic_launcher_background.xml │ │ ├── images.jpeg │ │ └── logo.png │ │ ├── layout │ │ ├── activity_login.xml │ │ ├── activity_main.xml │ │ ├── activity_payments.xml │ │ └── content_payments.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── flatfisher │ └── dialogflowchatbotsample │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/.gitignore -------------------------------------------------------------------------------- /Build_an_AI_Startup_with_PyTorch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/Build_an_AI_Startup_with_PyTorch.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/README.md -------------------------------------------------------------------------------- /app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/.DS_Store -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/.DS_Store -------------------------------------------------------------------------------- /app/src/androidTest/java/com/flatfisher/dialogflowchatbotsample/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/androidTest/java/com/flatfisher/dialogflowchatbotsample/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/assets/.DS_Store -------------------------------------------------------------------------------- /app/src/main/java/com/flatfisher/dialogflowchatbotsample/LanguageConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/java/com/flatfisher/dialogflowchatbotsample/LanguageConfig.java -------------------------------------------------------------------------------- /app/src/main/java/com/flatfisher/dialogflowchatbotsample/LoginActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/java/com/flatfisher/dialogflowchatbotsample/LoginActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/flatfisher/dialogflowchatbotsample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/java/com/flatfisher/dialogflowchatbotsample/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/flatfisher/dialogflowchatbotsample/Payments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/java/com/flatfisher/dialogflowchatbotsample/Payments.java -------------------------------------------------------------------------------- /app/src/main/java/com/flatfisher/dialogflowchatbotsample/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/java/com/flatfisher/dialogflowchatbotsample/User.java -------------------------------------------------------------------------------- /app/src/main/res/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/.DS_Store -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/drawable/button.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/button2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/drawable/button2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/drawable/images.jpeg -------------------------------------------------------------------------------- /app/src/main/res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/drawable/logo.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/layout/activity_login.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_payments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/layout/activity_payments.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_payments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/layout/content_payments.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/flatfisher/dialogflowchatbotsample/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/app/src/test/java/com/flatfisher/dialogflowchatbotsample/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Build-an-AI-Startup-with-PyTorch/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------