Skip to content

Commit

Permalink
update (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
goodwanghan authored May 3, 2021
1 parent a80fbcf commit 85efbfb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Fugue for Kaggle users

## Release History

### 0.2.4

* Update tune version

### 0.2.3

* Add config shortcut
Expand Down
6 changes: 4 additions & 2 deletions fuggle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
from IPython import get_ipython
from tune import TUNE_OBJECT_FACTORY, Monitor, NonIterativeObjectiveRunner
from tune_hyperopt import HyperoptRunner
from tune_notebook.vis import (
from tune_notebook import (
NotebookSimpleHist,
NotebookSimpleRungs,
NotebookSimpleTimeSeries,
PrintBest,
)

from fuggle.execution_engine import (
KaggleDaskExecutionEngine,
KaggleNativeExecutionEngine,
Expand Down Expand Up @@ -48,4 +48,6 @@ def _to_monitor(obj: Any) -> Optional[Monitor]:
return NotebookSimpleRungs()
if obj == "ts":
return NotebookSimpleTimeSeries()
if obj == "text":
return PrintBest()
raise NotImplementedError(obj)
2 changes: 1 addition & 1 deletion fuggle_version/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.3"
__version__ = "0.2.4"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
url="http://github.com/fugue-project/fuggle",
install_requires=[
"fugue[spark,dask,sql]==0.5.3",
"tune[all]==0.0.3",
"tune[all]==0.0.5",
"notebook",
"kaggle",
"seaborn",
Expand Down

0 comments on commit 85efbfb

Please sign in to comment.