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 9fb5328  [SYSTEMDS-3129] GitHub actions new memory amount
     new 7d354ac  [SYSTEMDS-3130] Remove old algorithm definitions in PythonAPI
     new 8aab7f5  [SYSTEMDS-3131] Python API node strings
     new a264691  [MINOR] PythonAPI update builtin algorithms

The 3 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:
 src/main/python/systemds/operator/algorithm.py     | 198 ---------------------
 .../python/systemds/operator/algorithm/__init__.py |  20 ++-
 .../systemds/operator/algorithm/builtin/bandit.py  |  27 ++-
 .../algorithm/builtin/{lasso.py => deepWalk.py}    |  32 ++--
 .../algorithm/builtin/{abstain.py => ffTrain.py}   |  26 ++-
 .../systemds/operator/algorithm/builtin/garch.py   |  70 ++++++++
 .../builtin/{imputeByFD.py => lenetTrain.py}       |  17 +-
 .../builtin/{l2svmPredict.py => matrixProfile.py}  |  26 +--
 .../{naiveBayesPredict.py => selectByVarThresh.py} |  12 +-
 .../algorithm/builtin/{lmDS.py => tSNE.py}         |  22 ++-
 .../operator/algorithm/builtin/tomeklink.py        |   2 +-
 .../operator/algorithm/builtin/winsorize.py        |   4 +-
 ...Pipeline.py => xgboostPredictClassification.py} |  17 +-
 .../{lasso.py => xgboostPredictRegression.py}      |  23 ++-
 src/main/python/systemds/operator/nodes/frame.py   |   3 +
 src/main/python/systemds/operator/nodes/list.py    |   2 +
 .../python/systemds/operator/nodes/list_access.py  |   5 +-
 src/main/python/systemds/operator/nodes/matrix.py  |   7 +-
 .../python/systemds/operator/nodes/multi_return.py |   5 +-
 src/main/python/systemds/operator/nodes/scalar.py  |   6 +-
 src/main/python/systemds/operator/nodes/source.py  |   3 +
 .../python/tests/{source => basics}/__init__.py    |   0
 .../test_lm.py => basics/test___str__.py}          |  39 ++--
 23 files changed, 253 insertions(+), 313 deletions(-)
 delete mode 100644 src/main/python/systemds/operator/algorithm.py
 copy src/main/python/systemds/operator/algorithm/builtin/{lasso.py => 
deepWalk.py} (65%)
 copy src/main/python/systemds/operator/algorithm/builtin/{abstain.py => 
ffTrain.py} (60%)
 create mode 100644 src/main/python/systemds/operator/algorithm/builtin/garch.py
 copy src/main/python/systemds/operator/algorithm/builtin/{imputeByFD.py => 
lenetTrain.py} (79%)
 copy src/main/python/systemds/operator/algorithm/builtin/{l2svmPredict.py => 
matrixProfile.py} (66%)
 copy src/main/python/systemds/operator/algorithm/builtin/{naiveBayesPredict.py 
=> selectByVarThresh.py} (83%)
 copy src/main/python/systemds/operator/algorithm/builtin/{lmDS.py => tSNE.py} 
(69%)
 copy src/main/python/systemds/operator/algorithm/builtin/{executePipeline.py 
=> xgboostPredictClassification.py} (67%)
 copy src/main/python/systemds/operator/algorithm/builtin/{lasso.py => 
xgboostPredictRegression.py} (69%)
 copy src/main/python/tests/{source => basics}/__init__.py (100%)
 copy src/main/python/tests/{algorithms/test_lm.py => basics/test___str__.py} 
(58%)

Reply via email to