From c6c67a34ad6a52ab3bf08ef59362439e88e336e3 Mon Sep 17 00:00:00 2001 From: William Falcon Date: Wed, 15 Jan 2020 20:57:04 -0500 Subject: [PATCH] finished callbacks --- pytorch_lightning/trainer/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pytorch_lightning/trainer/__init__.py b/pytorch_lightning/trainer/__init__.py index 232e9a1c..8cb5aed3 100644 --- a/pytorch_lightning/trainer/__init__.py +++ b/pytorch_lightning/trainer/__init__.py @@ -1,7 +1,4 @@ """ -Trainer - -The lightning trainer abstracts best practices for running a training, val, test routine. It calls parts of your model when it wants to hand over full control and otherwise makes training assumptions which are now standard practice in AI research.