Created
January 23, 2020 13:57
-
-
Save davidkpiano/a343c686bcc3ea6765ab27a7f36804aa to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or 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
Machine({ | |
"initial": "ingest", | |
"states": { | |
"ingest": { | |
"initial": "pending", | |
"states": { | |
"pending": { | |
"on": { | |
"RESOLVE": "success", | |
"ERROR": "failure" | |
} | |
}, | |
"failure": {}, | |
"success": { | |
"type": "final" | |
} | |
}, | |
"onDone": "transform" | |
}, | |
"transform": { | |
"initial": "pending", | |
"states": { | |
"pending": { | |
"on": { | |
"RESOLVE": "success", | |
"ERROR": "failure" | |
} | |
}, | |
"failure": {}, | |
"success": { | |
"type": "final" | |
} | |
}, | |
"onDone": "training" | |
}, | |
"training": { | |
"initial": "pending", | |
"states": { | |
"pending": { | |
"on": { | |
"RESOLVE": "success", | |
"ERROR": "failure" | |
} | |
}, | |
"failure": {}, | |
"success": { | |
"type": "final" | |
} | |
}, | |
"onDone": "scoring" | |
}, | |
"scoring": { | |
"initial": "pending", | |
"states": { | |
"pending": { | |
"on": { | |
"RESOLVE": "success", | |
"ERROR": "failure" | |
} | |
}, | |
"failure": {}, | |
"success": { | |
"type": "final" | |
} | |
} | |
} | |
} | |
} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment