提交 a50c56c9 编写于 作者: T tangwei

structure rebuild

上级 02ec66fd
...@@ -17,12 +17,11 @@ import sys ...@@ -17,12 +17,11 @@ import sys
import yaml import yaml
from fleetrec.trainer.local_engine import Launch from fleetrec.core.trainers.single_trainer import SingleTrainer
from fleetrec.trainer.single_trainer import SingleTrainer from fleetrec.core.trainers.cluster_trainer import ClusterTrainer
from fleetrec.trainer.cluster_trainer import ClusterTrainer from fleetrec.core.trainers.ctr_trainer import CtrPaddleTrainer
from fleetrec.trainer.ctr_trainer import CtrPaddleTrainer
from fleetrec.utils import envs from fleetrec.core.utils import envs
class TrainerFactory(object): class TrainerFactory(object):
......
...@@ -13,12 +13,7 @@ ...@@ -13,12 +13,7 @@
# limitations under the License. # limitations under the License.
import abc import abc
import copy
import yaml
import paddle.fluid as fluid
from paddle.fluid.incubate.fleet.parameter_server.pslib import fleet
from fleetrec.core.utils import table as table
class Layer(object): class Layer(object):
"""R """R
......
...@@ -5,12 +5,12 @@ setup for fleet-rec. ...@@ -5,12 +5,12 @@ setup for fleet-rec.
from setuptools import setup from setuptools import setup
packages = ["fleetrec", "fleetrec.models", packages = ["fleetrec", "fleetrec.models",
"fleetrec.examples", "fleetrec.examples.user_define", "fleetrec.examples.build_in" "fleetrec.examples", "fleetrec.examples.user_define", "fleetrec.examples.build_in",
"fleetrec.core", "fleetrec.core.engine", "fleetrec.core", "fleetrec.core.engine",
"fleetrec.core.metrics", "fleetrec.core.models", "fleetrec.core.trainers", "fleetrec.core.utils"] "fleetrec.core.metrics", "fleetrec.core.models", "fleetrec.core.trainers", "fleetrec.core.utils"]
requires = [ requires = [
"paddlepaddle" "paddlepaddle >= 0.0.0"
] ]
about = {} about = {}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册