Skip to content

Commit

Permalink
Add value_types
Browse files Browse the repository at this point in the history
  • Loading branch information
Luís Pedro Coelho committed May 22, 2009
1 parent 2280a80 commit e7472c2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions milksets/yeast/yeast.py
Expand Up @@ -6,6 +6,7 @@
import numpy as np
from os.path import dirname
import gzip
from ..vtypes import *
from ..utils import standard_properties, standard_classification_loader

__all__ = ['load'] + standard_properties
Expand All @@ -22,6 +23,9 @@
url = 'http://archive.ics.uci.edu/ml/datasets/Yeast'
data_source = 'UCI'
label_names = ['CYT', 'ERL', 'EXC', 'ME1', 'ME2', 'ME3', 'MIT', 'NUC', 'POX', 'VAC']
value_types = [
continuous('_%s' % i) for i in xrange(8)
]
missing_values = False

_datafile = dirname(__file__)+'/data/yeast.data.gz'
Expand Down

0 comments on commit e7472c2

Please sign in to comment.