7 lines
216 B
Python
7 lines
216 B
Python
# -*- coding: utf-8 -*-
|
|
"""Machine Learning Practical package."""
|
|
|
|
__authors__ = ['Pawel Swietojanski', 'Steve Renals', 'Matt Graham']
|
|
|
|
DEFAULT_SEED = 123456 # Default random number generator seed if none provided.
|