This is an automated email from the ASF dual-hosted git repository.
hui pushed a change to branch mlnode/test
in repository https://gitbox.apache.org/repos/asf/iotdb.git
from bb7bdb5356 Merge branch 'datanodeiter' into mlnode/test
add 8f41c30beb init mlnode package structure
add 4037574452 add license
add 736914ac44 refactor
add 3dedef4478 finish rpc service
add 026eb145ac add client test
add 0133f0a2d1 finish
add 9224a2a080 finish config
add 86206aa2e6 refactor dist
add e84fff1bd5 fix style
add 34f73362c2 basic setup
add e5333078f6 finish setup
add 36cda29c3e unify log format
add ee1ea5fa8e finish script
add c106bfffbe update readme
add 4041ca0340 update readme
add 1c99f995a5 unify MlNode to MLNode
add 586d04a363 fix config
add bc9d00d4fe add some comment
add d14b761f61 add files
add 601caa3bc9 add files
add 746cee9a16 merge
add 8da9b39a5d add manager.py
add 0523fe4ae1 Merge remote-tracking branch 'upstream/master' into
mlnode/process
add 543740f7d9 Merge remote-tracking branch 'upstream/master' into
mlnode/process
add 10d7cdc9f7 gitignore
add 0b9429c4d4 Merge remote-tracking branch 'origin/parser' into
mlnode/process
add d7c8445f34 refractor
add 0ad3ae99be refractor
add 0750fa6f49 [IOTDB-5728] Implement config parser & model/dataset
factory on MLNode (#9458)
add db539dff1d Merge remote-tracking branch 'origin/master' into
mlnode/process
add 63487f4395 merge master & apply isort/flake8
add 1f1e85bfa1 fix review
add 4ba3bbd8c5 fix
add c7296dddbe model info & model state
new 3072ae715a Merge remote-tracking branch 'liuyong/mlnode/process' into
mlnode/test
The 1 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:
mlnode/iotdb/mlnode/client.py | 28 ++-
mlnode/iotdb/mlnode/constant.py | 6 +
mlnode/iotdb/mlnode/handler.py | 4 +-
.../iotdb/mlnode/process}/__init__.py | 0
mlnode/iotdb/mlnode/process/manager.py | 54 +++++
mlnode/iotdb/mlnode/process/task.py | 100 +++++++++
.../mlnode/{log.py => process/task_factory.py} | 34 +--
mlnode/iotdb/mlnode/process/trial.py | 231 +++++++++++++++++++++
mlnode/iotdb/mlnode/util.py | 1 -
9 files changed, 440 insertions(+), 18 deletions(-)
copy {client-py/iotdb => mlnode/iotdb/mlnode/process}/__init__.py (100%)
create mode 100644 mlnode/iotdb/mlnode/process/manager.py
create mode 100644 mlnode/iotdb/mlnode/process/task.py
copy mlnode/iotdb/mlnode/{log.py => process/task_factory.py} (55%)
create mode 100644 mlnode/iotdb/mlnode/process/trial.py