Пример #1
0
def create_empty_network():
    """
    Args:
        None
    Returns:
        hidden_layers:  list of Neuron object lists representing the hidden layers
        output_layer:   list of Neuron objects representing the output layer
    Notes:

    """
    hidden_layers = []
    for item in range(const.NUM_HIDDEN_LAYERS):
        hidden_layers.append(Network.make_hidden_layer())
    output_layer = Network.make_output_layer()
    return hidden_layers, output_layer