I have written the code which is integrated with tensoerlow model for image classification but now i want to store that classified data in the database i.e. internal storage.So what can I do for that. The tensorflow model is flower detection.
Asked
Active
Viewed 200 times
1 Answers
0
I assume you're following codelab Recognize Flowers with TensorFlow Lite on Android. From Step 7, you can modify recognizeImage
method to export classification result to local file or database. The methods can vary depending on your use case, but for simply exporting to file, you can start from this SO thread.

Taehee Jeong
- 146
- 2
-
Ya I am using Tensorflow flower recognization code,But i want to store the data in the file without any button it should be stored automatically. can you provide me proper code because i dont know which variable data i have to store. – Abhishek Rai Feb 18 '21 at 17:40
-
Do you want to store probabilities, or actual class names? – Taehee Jeong Feb 19 '21 at 02:29
-
I want to store actual class name 1st label with highest perecntage – Abhishek Rai Feb 20 '21 at 08:44
-
Hi @AbhishekRai Did you save it in the database ? Thanks – OceanWaves Aug 25 '23 at 16:40