Alec Graves
Alec Graves
You will probably have to modify the training function to use model.train_on_batch() instead of model.fit(). Also, you should make a loading function for batches of your data. You could load...
@AKSHAYUBHAT Interesting. It is good to know that freezing the beginning layers does not significantly impact performance. It would be good to update the train function to use fewer epochs...
@AKSHAYUBHAT Nice catch, I did not even consider this. @roshanDD Looking at the links on the page, YLOv2 608x608 corresponds to the URLs in the quickstart guide.
@roshanDD The final layer is removed because the outputs of the final layer correspond to things specific to a dataset such as the number of possible classes and the number...
The script uses a [numpy file](https://docs.scipy.org/doc/numpy/reference/generated/numpy.savez.html) to load training data. You can see how I packaged my dataset at https://github.com/shadySource/DATA.
@roshanDD I wrote the code in python3. I did not test it for python2.7. It could also be an issue with the version of PIL you are using.
@Ahziel Yeah, I think the issue is that the box labels you are using were made at a resolution other than 640x480. If all of the images have the same...
The issue is that you are loading all of those images into ram. I remember I had an issue loading 1000 images on a 16gb ram computer, and I was...
I found this guide for installing with the latest installer without using the browser install thing. Apparently, you can give the argument `--quiet` to the installer and it will install...
As a kind of work around, you can use multiple usb wi-fi adapters and some linux networking to recieve multiple video streams and control multiple Tellos from a single computer....