MCPcopy
hub / github.com/hindupuravinash/the-gan-zoo / load_data

Function load_data

update.py:13–19  ·  view source on GitHub ↗

Load GANs data from the gans.csv file

()

Source from the content-addressed store, hash-verified

11
12
13def load_data():
14 """ Load GANs data from the gans.csv file """
15
16 with open('gans.tsv') as fid:
17 reader = csv.DictReader(fid, delimiter='\t')
18 gans = [row for row in reader]
19 return gans
20
21
22def update_readme(gans):

Callers 1

update.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected