ML / Tensorflow beginner.
Can any of these already-trained models be loaded on tfjs and re-trained there, then exported to Downloads or is Tensorflow python the only way to go?
I see this process is well described and documented in this tutorial for Tensorflow Python but unfortunately I can't find any documentation/tutorial to re-train an object detection model on the browser with tfjs (image classification yes, object detection no).
I see how I could load the coco-ssd model using npm, then probably even trigger saving it to downloads, but what about:
- config file (need to modify it because I want to have only one class, not 90)
- annotated images (both .jpg, .xml and .csv)
- labels.pbtxt
- .record files
Is there any way to go through the process of retraining an ssd model such as ssd_inception_v2_coco and I'm not hitting the right google keywords or is it just not possible in the current state of the framework?