-
Notifications
You must be signed in to change notification settings - Fork 142
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
docs: include Roadmap #75
Comments
@PaulTR mentioned this is mainly a community based project and there is no real roadmap see here But for TF it seems like delegate support will be the major area of work from now on
I am trying to get this running on desktop (#64) right now, if you have some MacOS experience that would be greatly appreciated. |
So a quick update. I'm going to try and push for additional samples through a vendor we work with. I want to get the UI cleaned up on existing samples (scale images to take up full view area, support a live camera feed), then add additional samples based on ones that we already support for native Android and iOS, particularly: Audio classification I also want to move the models to a remote location and download them at build time through a script for each example. My goal there is to reduce repo size going forward. |
Maybe a simple solution would be to have a simple script just for us to execute before building the app. # Delete old models
rm -r assets/model/
# Create folder if not already exists
mkdir assets/model
# Download model
curl https://storage.googleapis.com/download.tensorflow.org/models/tflite/text_classification/text_classification.tflite \
-o assets/model/text_classification.tflite
# Unzip model to get labels and vocab
unzip assets/model/text_classification.tflite \
-d assets/model/ |
Description
As a user (or potential user) of the package, I would like to know the upcoming or possible features and what the team is working on. Is there any publically available documentation or board that indicates so?
Additional context
The text was updated successfully, but these errors were encountered: