Advertisement
Guest User

Untitled

a guest
Apr 20th, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
DOT 1.30 KB | None | 0 0
  1. digraph {
  2.     splines = ortho;
  3.     nodesep = 1;
  4.  
  5.     xp_hard [label = "Expensive hardware"];
  6.     bounded [label = "Hardware-bounded AI"];
  7.     reg_hard [label = "Hardware regulation"];
  8.     nobv [label = "Non-obvious breakthrough"];
  9.     regulation [shape = "Mrecord" label = "<regulation> Effective regulation|<competition>Ineffective regulation"];
  10.     invest [shape = "Mrecord" label = "<yes>Invest time and/or efficiency in value alignment|<no>Rush and/or focus on efficiency"];
  11.     takeoff [label = "Soft takeoff"];
  12.     AI [shape = "Mrecord" label = "<few>One/few AI|<many>Many AIs"];
  13.  
  14.     positive [shape = "diamond" label = "Explicitly value-aligned outcome"];
  15.     negative [shape = "diamond" label = "Value-orthogonal outcome"];
  16.  
  17.     and1 [shape = "none" label = "AND"];
  18.     and2 [shape = "none" label = "AND"];
  19.     or1 [shape = "none" label = "OR"];
  20.     and6 [shape = "none" label = "AND"];
  21.     and7 [shape = "none" label = "AND"];
  22.     and8 [shape = "none" label = "AND"];
  23.  
  24.     xp_hard -> and1;
  25.     bounded -> {and1 and2};
  26.     reg_hard -> and2;
  27.     nobv -> or1;
  28.     and1 -> or1;
  29.     regulation:regulation -> or1;
  30.     and2 -> regulation:regulation;
  31.     or1 -> AI:few;
  32.     AI:few -> {and6};
  33.     AI:many -> {and7};
  34.     invest:yes -> {and6 and7}
  35.     invest:no -> negative;
  36.     and6 -> positive;
  37.     and7 -> negative;
  38.     takeoff->and8;
  39.     regulation:competition -> and8;
  40.     and8 -> AI:many;
  41.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement