I was looking at the "hyper_params" settings in the Softmax regression ipython notebook tutorial (
link).
It's very convenient to pass in integers with %(var)i, or strings with %(var)s. But is it possible to pass in lists.
For example, I'd like to batch over various convolutional network configurations that modify the kernel size. The kernel is a length-2 array, i.e. [8, 8] as in the convnet tutorial.
For now I've been keeping to square kernels and pools and using a single integer variable. But I was curious for the future if there is a way to pass in a list.
-Tom