Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust Systems to use TensorTable and schema shapes #293

Merged
merged 5 commits into from
Mar 17, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion merlin/systems/dag/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

# alias submodules here to avoid breaking everything with moving to submodules
# flake8: noqa
from .dictarray import Column, DictArray
from .ensemble import Ensemble
from .node import Node
from .op_runner import OperatorRunner
345 changes: 0 additions & 345 deletions merlin/systems/dag/dictarray.py

This file was deleted.

2 changes: 1 addition & 1 deletion merlin/systems/dag/ensemble.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def transform(self, transformable: Transformable, runtime=None):
Parameters
----------
transformable : Transformable
Input data to the graph (DataFrame or DictArray).
Input data to the graph (DataFrame or TensorTable).
runtime : Runtime, optional
The graph runtime to use to transform the inputs, by default None

Expand Down
Loading