MCPcopy Create free account
hub / github.com/alibaba/euler / __init__

Method __init__

tf_euler/python/dataset/base_dataset.py:40–47  ·  view source on GitHub ↗
(self, data_dir=current_dir, data_type='all')

Source from the content-addressed store, hash-verified

38class DataSet(object):
39
40 def __init__(self, data_dir=current_dir, data_type='all'):
41 self.data_dir = data_dir
42 self.data_type = data_type
43 self.source_url = 'DEFALT URL'
44 self.partition_num = 10
45 self.meta_file = None
46 self.origin_files = []
47 self.test_start_num = None
48
49 def load_graph(self):
50 origin_file = self.maybe_download(self.data_dir, self.source_url)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected