Skip to content

Commit

Permalink
Check in a simple script to create and save a model based on old-styl…
Browse files Browse the repository at this point in the history
…e data

Since the analysis pipeline has already been defined, this was pretty easy.
And it is even tested.

Testing done: Ran it, there was a json file created.
  • Loading branch information
shankari committed Feb 11, 2018
1 parent a1c5518 commit 21eb7e0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions bin/analysis/create_static_model.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# The old seed pipeline
import logging
import emission.analysis.classification.inference.mode.seed.pipeline as pipeline

if __name__ == '__main__':
logging.basicConfig(level=logging.DEBUG)
seed_pipeline = pipeline.ModeInferencePipelineMovesFormat()
seed_pipeline.runPipeline()

0 comments on commit 21eb7e0

Please sign in to comment.