This is an automated email from the ASF dual-hosted git repository.
baunsgaard pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/systemds.git.
from ebc206e [MINOR] Added test with company dataset - This commit
contains topk_cleaning test with company dataset - TODO: fix for
ArrayIndexOutOfBounce exception
new 2c64501 [SYSTEMDS-2835] Python end-to-end tutorial
new 9af05fe [SYSTEMDS-3132] PythonAPI parse FrameBlock to PandasDataFrame
Serialization
new fad7954 [SYSTEMDS-3133] Right indexing on Frames and Matrix
new 79addc3 [SYSTEMDS-3132] Update FrameBlock to include double and
boolean
new 5a92858 [MINOR] Github actionas cache adult dataset
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/workflows/python.yml | 6 +
.gitignore | 2 +-
.../sysds/runtime/matrix/data/FrameBlock.java | 104 +++-
.../docs/source/guide/python_end_to_end_tut.rst | 561 +++++++++++++++++++++
.../python/systemds/examples/tutorials/adult.py | 111 ++++
src/main/python/systemds/operator/nodes/frame.py | 35 +-
src/main/python/systemds/operator/nodes/list.py | 5 +-
.../python/systemds/operator/nodes/list_access.py | 9 +-
src/main/python/systemds/operator/nodes/matrix.py | 26 +-
.../python/systemds/operator/nodes/multi_return.py | 11 +-
src/main/python/systemds/operator/nodes/scalar.py | 14 +-
src/main/python/systemds/operator/nodes/source.py | 10 +-
.../python/systemds/operator/operation_node.py | 9 +-
src/main/python/systemds/utils/converters.py | 40 +-
src/main/python/systemds/utils/helpers.py | 31 +-
.../tutorials}/neural_net_source.dml | 4 -
.../tests/examples/tutorials/preprocess.dml} | 30 +-
.../python/tests/examples/tutorials/test_adult.py | 363 +++++++++++++
src/main/python/tests/frame/test_rIndexing.py | 100 ++++
.../manual_tests/multi_log_reg_adult.py} | 9 +-
src/main/python/tests/matrix/test_rIndexing.py | 103 ++++
src/test/resources/datasets/homes/homes.csv.mtd | 2 +-
22 files changed, 1509 insertions(+), 76 deletions(-)
create mode 100644 src/main/python/docs/source/guide/python_end_to_end_tut.rst
create mode 100644 src/main/python/systemds/examples/tutorials/adult.py
copy src/main/python/tests/{source =>
examples/tutorials}/neural_net_source.dml (98%)
copy src/{test/scripts/functions/codegen/cellwisetmpl20.dml =>
main/python/tests/examples/tutorials/preprocess.dml} (54%)
create mode 100644 src/main/python/tests/examples/tutorials/test_adult.py
create mode 100644 src/main/python/tests/frame/test_rIndexing.py
copy src/main/python/{systemds/__init__.py =>
tests/manual_tests/multi_log_reg_adult.py} (82%)
create mode 100644 src/main/python/tests/matrix/test_rIndexing.py