Skip to content

Commit

Permalink
Merge pull request #11 from fugue-project/0.0.4.1
Browse files Browse the repository at this point in the history
fine tune sklearn interface
  • Loading branch information
goodwanghan authored Jan 3, 2021
2 parents 61de323 + e318726 commit fecf328
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fugue_incubator_version/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.4"
__version__ = "0.0.5"
6 changes: 3 additions & 3 deletions fugue_tune/sklearn.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ def suggest_sk_model(
partition_keys: List[str] = _EMPTY_LIST,
top_n: int = 1,
objective_runner: Optional[ObjectiveRunner] = None,
distributable: bool = False,
engine: Any = NativeExecutionEngine,
distributable: Optional[bool] = None,
execution_engine: Any = NativeExecutionEngine,
) -> List[Dict[str, Any]]:
e = to_instance(engine, ExecutionEngine)
e = to_instance(execution_engine, ExecutionEngine)
model_path = serialize_path if save_model else ""

dag = FugueWorkflow()
Expand Down

0 comments on commit fecf328

Please sign in to comment.