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
EvalResult support for val loop (PR 3/5) #2651
EvalResult support for val loop (PR 3/5) #2651
Changes from all commits
094f8f7
d81ee35
c2edadb
675bb8c
62a1b91
28b101a
f8e48a8
0895daf
72fb07a
3b5d542
bdbb0a3
2756fe1
98bb6c7
a2a3559
296420e
ae9bc3f
ea680e5
27c9ce2
98cff7d
3e9d06a
24e3cf9
a0eeaff
9932eb1
a4843ff
05f7a21
9428044
27275fd
6450d7e
1e0b6c5
cd89c88
366aba6
617d110
8e9ea97
ad6c5cc
f7e7e8f
3f8f79d
abe2533
135008d
987df55
6c01070
eec349b
9c98ca8
0e7f820
b86d4c8
aff9513
0cda5ce
731de49
911b2d3
7093b41
350091b
a5e7c4f
508d32c
a3aa4e4
2d8eb84
19e35e3
049bcba
457044c
b7c2a71
21ee13b
5dc3bd2
6be625b
d1b35ab
eb7b55d
f392b6d
fefb3ff
58444f9
5786fb1
b10f867
ffda9f6
b27f3e3
ba1c8cb
8a35cb9
fd447f8
95a9177
e1ff092
8675f17
3cadf41
1c65951
2c42427
0a61dc9
71ade04
79bda13
0646a72
42f32f1
16fa4f6
e4ed1ee
4a9f8f5
695c27e
2d49484
fb5dafb
e64e65b
6971a93
83f4ffd
2d43ee1
040e271
e257d24
21bcec6
d0a81f3
f25261d
b0a937a
c6f1ce3
26464ec
bd2f876
7667d5c
240bac1
5391275
3847dd0
30ea127
b3d6373
78e9da2
9366c3a
254ed19
e14f6d4
028dd80
59539d4
052bd48
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.
since when do we have two of these callback methods? what is the difference?
I suspect on_validation_epoch_end end is never actually called. I can only find the other one
also there are no tests in test_callbacks.py for this.
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 would use just one and if we assume that
on_validation_epoch_end
is a better name, deprecate the other oneThere 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.
well
validation_end
is deprecated so I assumeon_validation_end
shall be too @williamFalconThere 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.
yes exactly.
we can deprecate in the new PR. (these were the old names which we deprecated)
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.
lest add deprecation warning as soon as possible so users get enough time...