Skip to content

Commit

Permalink
Gave training size to user
Browse files Browse the repository at this point in the history
  • Loading branch information
mritunjaysharma394 committed Sep 17, 2020
1 parent 12ecf31 commit 205dcb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

tags = os.environ["INPUT_TAGS"]
tagsVar= os.environ["INPUT_TAGSVAR"]
trainSize = os.environ["INPUT_TRAINSIZE"]
trainSize = int(os.environ["INPUT_TRAINSIZE"])

tags_str = (str(tags).strip('[]')).split(",")
tagsVar_str = (str(tagsVar).strip('[]')).split(",")
Expand Down

0 comments on commit 205dcb1

Please sign in to comment.