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."""
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
DEFAULT_SEED = 123456 # Default random number generator seed if none provided.
from mlp import DEFAULT_SEED
class ConstantInit(object):

View File

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

View File

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