-
Notifications
You must be signed in to change notification settings - Fork 480
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement audio classifier #31
Conversation
I know this is a WIP, so keeping comments light. In the Library fragment, the UI should be cleared if backgrounding the app and returning. Can we float the overlap percentage to the right so it aligns with our inference time? Other than those incredibly small things, the UI looks solid to me. Did you have any luck with the streaming inference time values based on our earlier conversation? Thanks! |
Unfortunately, the timestamp |
} | ||
|
||
when (currentModel) { | ||
YAMNET_MODEL -> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since we're only using one model and not showing a radio button for changing it in our UI, let's remove this when statement and related constants. We can readd them later if we support an additional model.
.../app/src/main/java/com/google/mediapipe/examples/audioclassifier/fragment/LibraryFragment.kt
Outdated
Show resolved
Hide resolved
Very minor comments, otherwise LGTM. I'll see if I can get some answers about the inference time, but that may not happen until next week. I'll update here once I have some more information. Thanks! |
Would you mind moving this app one level lower? It'd go into an android directory to match the structure from the other samples. |
…io_classifier Implement audio classifier
No description provided.