Keras Tuner is a library that can help you experiment with hyperparameters for your TF model!
You define a set of variables to try and their ranges and the library will execute multiple training steps and automatically search for the best values for the hyperparameters
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.