Nugget post: Installing PyVLFEAT

When attempting to install PyVLFEAT (), a simple pip install pyvlfeat fails. Proceeding to the PyPI website (https://pypi.python.org/pypi/pyvlfeat/) we can download the code but again it doesn't run when attempting the usual python setup.py build also fails. The trick to get this installed successfully is first of all to make sure you have the python … Continue reading Nugget post: Installing PyVLFEAT

Nugget Post: Skflow GridSearch

Hyperparameter optimization in neural networks is generally done heuristically, by varying each individual parameter such as learning rate, batch size and number of steps. Sklearn automates this by using the GridSearchCV [1] Usually Sklearn's examples and documentation is spot on and copy/pasting an example works with minimal changes. However this wasn't quite the case with … Continue reading Nugget Post: Skflow GridSearch