This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mdl_path = "models/bently.tflite" | |
audio_files_dir = "audio" | |
interpreter = tflite.Interpreter(model_path=mdl_path) | |
interpreter.allocate_tensors() | |
input_details = interpreter.get_input_details() | |
output_details = interpreter.get_output_details() | |
print("Input details:", input_details) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
Created on Tue Apr 19 21:32:12 2022 | |
@author: Md Jobayer | |
""" | |
List1 = [1, 2, 5, 7, 8, 13, 16, 17, 20, 21] | |
def second_min(list): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'com.android.application' | |
apply plugin: 'kotlin-android' | |
apply plugin: 'kotlin-android-extensions' | |
apply plugin: 'com.google.gms.google-services' | |
android { | |
compileSdkVersion 29 | |
buildToolsVersion "29.0.3" | |
defaultConfig { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Parcelize | |
data class Parents( | |
var accountID: String = "", | |
var uniqueID: String = "", | |
var name: String = "", | |
var email: String = "", | |
var phone: String = "", | |
var additionalPhone: String = "", | |
var photoUrl: String = "", | |
var aadharNumber: Long = 0, |