Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Process positional arguments #134
base: main
Are you sure you want to change the base?
Process positional arguments #134
Changes from 23 commits
df69fd5
3b881a6
2899de3
731b664
a4cf2cd
d6b16ed
aeca489
61f1b1b
e8b508c
109e0e4
b7d9d5c
6dbbadd
e5c5b80
1046cff
8c489aa
130f807
55cadea
c83eccf
4361e2e
53c44f1
23ae949
94a005f
528a3a7
a3cfae6
92cf918
b145a53
72d53c6
d05963b
fffd0d0
49065c9
f53fe07
e52d371
ca0c4d2
914c417
ebd3880
aa4f6cd
19a8a72
f92872c
1eea97a
f7cd804
a107678
a835e8b
594ea9d
dbf19ad
c182a37
d3239b4
9a60cbf
1cb7502
f710611
dacd17a
5673690
474acdf
ccce776
4e16587
5d72476
b4358fd
54ba275
afd01ff
1ca2997
afdbbb0
4161ad7
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not use a for each loop here? I don't see
i
being used elsewhere.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I use it in line 182, the
i
represents the position in which the argument is, then we tie it in with the tf.function definition arguments.