-> To improve the quality of your audio data, try recording it with different microphones, in different rooms, changing the proximity to the mic.
-> The model will learn from 1-second samples so it won't be able to recognize longer events.
3/8🧵
After you have some data to train a model, you can define the number of epochs and start training your model
The training runs completely in the Browser using TensorFlow.js
Your data doesn't go to any server unless you choose to save it to your Google Drive
Following up from my previous thread, let's continue taking a look at some additional itertools methods
Some of them, as you will see, have very similar built-in versions but the key here is: itertools works on iterables and generators that are lazy evaluated collections
1/14🧵
One example is the method islice. It does slicing but for iterables (potentially endless collections). The main difference is that it doesn't accept negative indexes like regular slicing.