You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@submarine.apache.org by by...@apache.org on 2021/06/26 07:43:52 UTC

[submarine] branch master updated: SUBMARINE-815. Export ModelsClient from pysubmarine init

This is an automated email from the ASF dual-hosted git repository.

byronhsu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/submarine.git


The following commit(s) were added to refs/heads/master by this push:
     new 85a87e8  SUBMARINE-815. Export ModelsClient from pysubmarine init
85a87e8 is described below

commit 85a87e89fbe339cd82bc502dfe139184794540e6
Author: jeff-901 <b0...@ntu.edu.com>
AuthorDate: Fri Jun 25 11:12:05 2021 +0800

    SUBMARINE-815. Export ModelsClient from pysubmarine init
    
    ### What is this PR for?
    Export ModelsClient from pysubmarine/submarine __init__.py
    Example:
    ```
    from submarine import *
    client = ModelsClient()
    ```
    before: failed
    after: success
    
    ### What type of PR is it?
    Bug Fix
    
    ### Todos
    
    ### What is the Jira issue?
    https://issues.apache.org/jira/browse/SUBMARINE-815
    
    ### How should this be tested?
    
    ### Screenshots (if appropriate)
    
    ### Questions:
    * Do the license files need updating? No
    * Are there breaking changes for older versions? No
    * Does this need new documentation? No
    
    Author: jeff-901 <b0...@ntu.edu.com>
    
    Signed-off-by: byronhsu <by...@apache.org>
    
    Closes #610 from jeff-901/SUBMARINE-815 and squashes the following commits:
    
    f8cfb817 [jeff-901] Merge branch 'SUBMARINE-815' of https://github.com/jeff-901/submarine into SUBMARINE-815
    9475dc1c [jeff-901] SUBMARINE-815. Export ModelsClient
    c7a216fd [jeff-901] SUBMARINE-815. Export ModelsClient
    ff05dcb7 [jeff-901] SUBMARINE-815. Export ModelsClient
    73a03fcf [jeff-901] SUBMARINE-815. Export ModelsClient
---
 submarine-sdk/pysubmarine/submarine/__init__.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/submarine-sdk/pysubmarine/submarine/__init__.py b/submarine-sdk/pysubmarine/submarine/__init__.py
index 66536a1..c16c541 100644
--- a/submarine-sdk/pysubmarine/submarine/__init__.py
+++ b/submarine-sdk/pysubmarine/submarine/__init__.py
@@ -27,5 +27,6 @@ __all__ = ["log_metric",
            "log_param",
            "set_tracking_uri",
            "get_tracking_uri",
-           "ExperimentClient"
+           "ExperimentClient",
+           "ModelsClient"
            ]

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@submarine.apache.org
For additional commands, e-mail: dev-help@submarine.apache.org