Git Product home page Git Product logo

Comments (1)

s8sg avatar s8sg commented on May 27, 2024

An example dot could be:

digraph depgraph {
        rankdir=TB;
        splines=curved;
        fontname="Courier New";
        fontcolor="grey";
        node [style=filled fontname="Courier" fontcolor="black"];
        
        
        subgraph cluster_0 {
		   label = "1-validate-query";
		   
		   color=lightgrey;
		   style=rounded;
		   node [style=filled];
		   
		   "1.1-mod" [color=lightblue];
	    }
        
        subgraph cluster_1 {
          label = "2-detect-face";
		  color=lightgrey;
		  style=rounded;
		  node [style=filled];
		  
		  "2.1-func-facedetect" [color=lightgrey];
	    }
	    
	    subgraph cluster_2 {
		  label = "3-edit-image";
		  color=lightgrey;
		  style=rounded;
		  node [style=filled];
		  
		  "3.1-func-colorization" [color=lightgrey];
		  "3.2-func-image-resizer" [color=lightgrey];
		 
	    }
	    
	    subgraph cluster_4 {
	      label = "4-validate-and-upload";
		  color=lightgrey;
		  style=rounded;
		  node [style=filled];
		  
		  "4.1-mod" [color=pink];
	    }
	    
        "1.1-mod" -> "2.1-func-facedetect" [label="1:1" color=grey ];
        "1.1-mod" -> "3.1-func-colorization" [label="1:1" color=grey];
        
	    "3.1-func-colorization" -> "3.2-func-image-resizer" [label="1:1" color=grey];
	    
        "2.1-func-facedetect" -> "4.1-mod" [label="1:1" color=grey];
        "3.2-func-image-resizer" -> "4.1-mod" [label="1:1" color=grey];
}

screenshot 2018-11-30 at 5 35 38 pm

from faas-flow.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.