I am new to skflow. With the following example code, I am able to initialize a neural network estimator.
regressor = skflow.TensorFlowDNNRegressor(
hidden_units=[10, 10],
steps=5000,
learning_rate=0.1,
batch_size=1)
I would like to know if these are the only input parameters for TensorFlowDNNRegressor or are there more parameters, which I can change? Could anyone please let me know where I can find this list of parameters? I am not able to find any documentation for it.