├── .github ├── FUNDING.yml └── workflows │ └── build_apk.yml ├── .gitignore ├── .idea ├── .gitignore ├── .name ├── compiler.xml ├── gradle.xml ├── jarRepositories.xml ├── kotlinc.xml ├── misc.xml └── vcs.xml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── model_age_nonq.tflite │ ├── model_age_q.tflite │ ├── model_gender_nonq.tflite │ ├── model_gender_q.tflite │ ├── model_lite_age_nonq.tflite │ ├── model_lite_age_q.tflite │ ├── model_lite_gender_nonq.tflite │ └── model_lite_gender_q.tflite │ ├── ic_launcher-playstore.png │ ├── java │ └── com │ │ └── ml │ │ └── shubham0204 │ │ └── age_genderdetection │ │ ├── AgeEstimationModel.kt │ │ ├── GenderClassificationModel.kt │ │ ├── MainActivity.kt │ │ └── ui │ │ └── theme │ │ ├── Color.kt │ │ ├── Theme.kt │ │ └── Type.kt │ └── res │ ├── drawable │ ├── ic_launcher_background.xml │ └── ic_launcher_foreground.xml │ ├── mipmap-anydpi │ ├── 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 │ ├── strings.xml │ └── themes.xml │ └── xml │ └── file_paths.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── app_working_s.gif ├── repo_banner.png └── results.png └── settings.gradle.kts /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build_apk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/.github/workflows/build_apk.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Age-Gender Detection -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/model_age_nonq.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/assets/model_age_nonq.tflite -------------------------------------------------------------------------------- /app/src/main/assets/model_age_q.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/assets/model_age_q.tflite -------------------------------------------------------------------------------- /app/src/main/assets/model_gender_nonq.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/assets/model_gender_nonq.tflite -------------------------------------------------------------------------------- /app/src/main/assets/model_gender_q.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/assets/model_gender_q.tflite -------------------------------------------------------------------------------- /app/src/main/assets/model_lite_age_nonq.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/assets/model_lite_age_nonq.tflite -------------------------------------------------------------------------------- /app/src/main/assets/model_lite_age_q.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/assets/model_lite_age_q.tflite -------------------------------------------------------------------------------- /app/src/main/assets/model_lite_gender_nonq.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/assets/model_lite_gender_nonq.tflite -------------------------------------------------------------------------------- /app/src/main/assets/model_lite_gender_q.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/assets/model_lite_gender_q.tflite -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/com/ml/shubham0204/age_genderdetection/AgeEstimationModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/java/com/ml/shubham0204/age_genderdetection/AgeEstimationModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/ml/shubham0204/age_genderdetection/GenderClassificationModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/java/com/ml/shubham0204/age_genderdetection/GenderClassificationModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/ml/shubham0204/age_genderdetection/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/java/com/ml/shubham0204/age_genderdetection/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/ml/shubham0204/age_genderdetection/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/java/com/ml/shubham0204/age_genderdetection/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/com/ml/shubham0204/age_genderdetection/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/java/com/ml/shubham0204/age_genderdetection/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/com/ml/shubham0204/age_genderdetection/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/java/com/ml/shubham0204/age_genderdetection/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/res/mipmap-anydpi/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/app_working_s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/images/app_working_s.gif -------------------------------------------------------------------------------- /images/repo_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/images/repo_banner.png -------------------------------------------------------------------------------- /images/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/images/results.png -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham0204/Age-Gender_Estimation_TF-Android/HEAD/settings.gradle.kts --------------------------------------------------------------------------------