Created
May 4, 2021 14:29
-
-
Save gar1t/7a10da5eb950bc9855eac6207982b187 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with open("bigbatch.csv", "w") as f: | |
f.write("""x,y | |
1,2 | |
3,4 | |
""") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bigbatch: {} | |
train-batch: | |
exec: guild run train @bigbatch.csv -y | |
requires: | |
- operation: bigbatch | |
select: bigbatch.csv | |
sourcecode: | |
dest: . | |
exclude: '*.csv' | |
train: | |
flags-import: all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bigbatch: {} | |
train-batch: | |
exec: guild run train @bigbatch.csv -y | |
requires: | |
- operation: bigbatch | |
select: bigbatch.csv | |
sourcecode: | |
dest: . | |
exclude: '*.csv' | |
train: | |
flags-import: all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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