app/lib/config.dart
2021-08-24 19:28:19 +07:00

8 lines
No EOL
305 B
Dart

const String model = 'assets/datasets/model.tflite';
const String label = 'assets/datasets/label.txt';
const String inputType = 'decodedWav';
const int numOfInferences = 1;
const int sampleRate = 16000;
const int recordingLength = 16000;
const int bufferSize = 2000;
const double detectionThreshold = 0.5;