Skip to content

Instantly share code, notes, and snippets.

@gar1t
Created May 4, 2021 14:29
Show Gist options
  • Save gar1t/7a10da5eb950bc9855eac6207982b187 to your computer and use it in GitHub Desktop.
Save gar1t/7a10da5eb950bc9855eac6207982b187 to your computer and use it in GitHub Desktop.
with open("bigbatch.csv", "w") as f:
f.write("""x,y
1,2
3,4
""")
bigbatch: {}
train-batch:
exec: guild run train @bigbatch.csv -y
requires:
- operation: bigbatch
select: bigbatch.csv
sourcecode:
dest: .
exclude: '*.csv'
train:
flags-import: all
bigbatch: {}
train-batch:
exec: guild run train @bigbatch.csv -y
requires:
- operation: bigbatch
select: bigbatch.csv
sourcecode:
dest: .
exclude: '*.csv'
train:
flags-import: all
x = 0
y = 0
print("x=%s" % x)
print("y=%s" % y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment