Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
Foreshadow object serialization and deserialization plus a simple pyt…
Browse files Browse the repository at this point in the history
…hon script wrapper (#154)

* Adding temporary cmd script to run level 1 mode of foreshadow

* Serialize foreshadow object

* Adding serialization and deserialization of the meta estimator plus foreshadow object

* Fix an issue with serializing sklearn estimator with no verbosity. Works for simple estimator, pipeline will still have verbose output

* Add foreshadow serialization in the console.py

* Default deep=False so we can eliminate all the redundant dict_deserialize override
  • Loading branch information
jzhang-gp committed Sep 20, 2019
1 parent 9b10ef8 commit 9371b9d
Show file tree
Hide file tree
Showing 16 changed files with 514 additions and 371 deletions.
8 changes: 8 additions & 0 deletions bin/foreshadow_runner.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env python
"""Simple command line script to execute foreshadow."""

from foreshadow.console import cmd


if __name__ == "__main__":
cmd()

0 comments on commit 9371b9d

Please sign in to comment.