Last active
March 14, 2016 16:56
-
-
Save angelf/9f0fc2ca47bc27b5ea99 to your computer and use it in GitHub Desktop.
vFlare-interplay
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
| digraph G { | |
| node [colorscheme=accent5] | |
| "Record Store" [shape = "box3d", style="filled", fillcolor=1] | |
| "Features Store" [shape = "box3d", style="filled", fillcolor=1] | |
| "Events Store" [shape = "box3d", style="filled", fillcolor=1] | |
| "Models Store" [shape = "box3d", style="filled", fillcolor=2] | |
| "Inverted Index" [shape = "box3d", style="filled", fillcolor=3] | |
| "Ingestion API" -> "Record Store" | |
| "Record Store" -> "Features Store" [label = "Feature Extraction \n(Content-based)"] | |
| "Events Store" -> "Features Store" [label = "Feature Extraction \n(Usage-based)"] | |
| "Features Store" -> "Models Store" [label = "Machine Learning\n Tasks"] | |
| "Models Store" -> "Features Store" [label ="Second-order Features"] | |
| "Record Store" -> "Inverted Index" [label = "Index Generation"] | |
| "Features Store" -> "Inverted Index" [label = "Index Generation"] | |
| "Events API" -> "Events Store" | |
| "Inverted Index" -> "Full-text Search" | |
| "Models Store" -> "Semantic Search" | |
| "Features Store" -> "Semantic Search" | |
| "Features Store" -> "Reranker" | |
| "Semantic Search" -> "Reranker" | |
| "Full-text Search" -> "Reranker" | |
| "Models Store" -> "Reranker" | |
| "Reranker" -> "Search API" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment