[sgd] Document and add simple MNIST example (#3236)

This commit is contained in:
Eric Liang
2018-11-10 21:52:20 -08:00
committed by GitHub
parent d681893b0f
commit 53489d2f85
15 changed files with 279 additions and 38 deletions
+11
View File
@@ -0,0 +1,11 @@
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from ray.experimental.sgd.sgd import DistributedSGD
from ray.experimental.sgd.model import Model
__all__ = [
"DistributedSGD",
"Model",
]