New: graphvizAll contenthive-129948hive-196917krsteemhive-166405zzanhive-183959hive-180932hive-150122hive-185836photographyuncommonlablifehive-183397hive-144064hive-188619bitcoinhive-139150hive-101145krsuccesshive-124908hive-103599hive-180301hive-109690hive-106183TrendingNewHotLikersmarkgritter (59)in procjam • 6 years agoVisual representation of graph grammarA lot of the existing packages for graph grammars seem to have GUIs for writing rules, and in some of them that seems to be your only option. Tonight I prototyped a way to export a graph grammar…markgritter (59)in procjam • 6 years agoA complicated Soffit exampleSuppose we want to create a graph grammar that makes rectangular grids. A first cut at it would be something like "expand outwards from any edge that hasn't already been used", something like…markgritter (59)in programming • 6 years agoGraph rewrite examples, generated by SoffitI started at doc/examples directory for the soffit project, and my first two examples are there . Unfortunately, only one of them looks any good. The way I finally convinced graphviz to…markgritter (59)in procjam • 6 years agographviz clusters suckThe #1 question about graphviz seems to be "why can't I get it to lay out my clusters in the way I want", judging from the number of StackOverflow questions I see. I wrote some code in Soffit to…markgritter (59)in visualization • 6 years agosteemCreated with Sketch.Steem Tags' Covariance, GraphedAs a follow up to the discussion from a couple days ago ( I though I'd try graphing the highest-value relationships between Steem tags. Here are the top 20 covariances and bottom 20…markgritter (59)in visualization • 6 years agosteemCreated with Sketch.Tracing and visualizing a large buildWhat happens when we build a large software package? A lot! Visualizing the inputs and outputs of a build Here's a graph of every process that read or wrote a file while building the 'graphviz'…markgritter (59)in visualization • 6 years agosteemCreated with Sketch.#steemstem and 20 of its closest friendsWhich Steem tags are most commonly used together? Can we learn anything from visualizing the "word cloud" of tags which are frequent neighbors? I gathered the tags and net rshares for all…markgritter (59)in steemit • 6 years agosteemCreated with Sketch.Another Rshares Visualization AttemptI modified my earlier code to use a priority queue. Starting with myself, it select nodes to include based on total incoming weight of rshares from nodes already visited. For this experiment I…markgritter (59)in steemit • 6 years agosteemCreated with Sketch.An Experiment in Visualizing Steem Voting Patterns (but not very well)I thought I'd play around with the Steem API and see if I could built a visualization on top of it. I installed the steem-python library and found it pretty quick to start making API calls. My…weichencoder (25)in graphviz • 7 years agomacOS下实现Keras模型的可视化及错误处理第一部分:如何实现可视化 第一种:利用 plot_model 导出模型结构图 keras.utils.vis_utils 模块提供了画出Keras模型的函数,依赖于graphviz。 该函数将已经设计好的模型画成结构图,并保存成图片: from keras.utils import plot_model