Commit 7148b1e 1 parent 53d6a17 commit 7148b1e Copy full SHA for 7148b1e
File tree 2 files changed +2
-2
lines changed
src/lightning/data/streaming
tests/tests_data/streaming
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ def __init__(
78
78
if self .distributed_env .world_size > 1 :
79
79
if drop_last is False :
80
80
logger .warn (
81
- "You're operating within a distributed environment and have enabled the `drop_last` option. "
81
+ "You're operating within a distributed environment and have disabled the `drop_last` option. "
82
82
"Please note that this configuration may lead to training interruptions if your system depends "
83
83
"on distributed collectives."
84
84
)
Original file line number Diff line number Diff line change @@ -902,5 +902,5 @@ def detect(cls):
902
902
assert not dataset .drop_last
903
903
904
904
warn_value = logger_mock .warn ._mock_mock_calls [0 ].args [0 ]
905
- assert warn_value == "You're operating within a distributed environment and have enabled the `drop_last`" \
905
+ assert warn_value == "You're operating within a distributed environment and have disabled the `drop_last`" \
906
906
" option. Please note that this configuration may lead to training interruptions if your system depends on distributed collectives." # noqa: E501
You can’t perform that action at this time.
0 commit comments