-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release/0.5] Fix fasttrackml python client (#907)
Backport of #897
- Loading branch information
1 parent
0bda8b4
commit 7cea4dc
Showing
18 changed files
with
219 additions
and
309 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../README.md |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
import contextlib | ||
|
||
import mlflow | ||
from fasttrackml.client import FasttrackmlClient | ||
from mlflow import * | ||
|
||
from .client import FasttrackmlClient | ||
|
||
del log_metric, log_metrics | ||
from fasttrackml.fluent import log_metric, log_metrics | ||
from .fluent import log_metric, log_metrics | ||
|
||
__all__ = [name for name in dir() if name in dir(mlflow)] | ||
__all__.append("FasttrackmlClient") | ||
|
||
with contextlib.suppress(Exception): | ||
from mlflow import gateway | ||
from mlflow import gateway | ||
|
||
__all__.append("gateway") |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.