Tidying up headers.

This commit is contained in:
Matt Graham 2016-09-19 11:16:21 +01:00
parent e9502c44a4
commit 08c5bcbce4
4 changed files with 5 additions and 6 deletions

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
"""Model costs.""" """Model costs."""
import numpy as np import numpy as np

View File

@ -5,8 +5,7 @@ This module defines classes to initialise the parameters in a layer.
""" """
import numpy as np import numpy as np
from mlp import DEFAULT_SEED
DEFAULT_SEED = 123456 # Default random number generator seed if none provided.
class ConstantInit(object): class ConstantInit(object):

View File

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""Learning rules.""" """Learning rules."""
import numpy as np import numpy as np

View File

@ -1,6 +1,5 @@
""" # -*- coding: utf-8 -*-
Model definitions. """Model definitions."""
"""
from mlp.layers import LayerWithParameters from mlp.layers import LayerWithParameters