fix changelog (#1864)

* fix chlog

* test for #1729

* hist

* update

* Document use case of passing test dataloaders to Trainer.test() (#1992)

* Issue 1990 Doc patch.

* Codeblock directive.

* Update to reflect current state of pytorch-lightning

* Final grammar cleaning. I hope these commits are squashed.

* Apply suggestions from code review

* Apply suggestions from code review

Co-authored-by: Jirka Borovec <Borda@users.noreply.github.com>
Co-authored-by: Adrian Wälchli <aedu.waelchli@gmail.com>

Co-authored-by: authman <uapatira@gmail.com>
Co-authored-by: Adrian Wälchli <aedu.waelchli@gmail.com>
This commit is contained in:
Jirka Borovec
2020-05-31 00:48:05 -04:00
committed by GitHub
co-authored by Adrian Wälchli authman
parent d8dc0a7228
commit 9893681859
4 changed files with 41 additions and 16 deletions
+2 -1
View File
@@ -97,7 +97,8 @@ def test_tbd_remove_in_v0_9_0_trainer():
assert getattr(trainer, 'show_progress_bar')
with pytest.deprecated_call(match='v0.9.0'):
_ = Trainer(num_tpu_cores=8)
trainer = Trainer(num_tpu_cores=8)
assert trainer.tpu_cores == 8
def test_tbd_remove_in_v0_9_0_module_imports():