File tree Expand file tree Collapse file tree 1 file changed +9
-17
lines changed Expand file tree Collapse file tree 1 file changed +9
-17
lines changed Original file line number Diff line number Diff line change 44   "cell_type" : " markdown"  ,
55   "metadata" : {},
66   "source" : [
7-     " You can use `ctrl-enter` to execute each snippet of code.  The first snippet will check that TensorFlow is installed. " 
7+     " You can press `shift + enter` to quickly advance through each line of a notebook. Try it now!\n "  ,
8+     " This snippet of Python creates an extremely simple graph and runs." 
89   ]
910  },
1011  {
1516   },
1617   "outputs" : [],
1718   "source" : [
18-     " import tensorflow as tf" 
19+     " import tensorflow as tf\n "  ,
20+     " import matplotlib\n "  ,
21+     " \n "  ,
22+     " hello = tf.constant('Hello, TensorFlow!')\n "  ,
23+     " sess = tf.Session()\n "  ,
24+     " print(sess.run(hello))" 
1925   ]
2026  },
2127  {
2228   "cell_type" : " markdown"  ,
2329   "metadata" : {},
2430   "source" : [
25-     " Now, create an extremely simple graph and run it!" 
26-    ]
27-   },
28-   {
29-    "cell_type" : " code"  ,
30-    "execution_count" : null ,
31-    "metadata" : {
32-     "collapsed" : false 
33-    },
34-    "outputs" : [],
35-    "source" : [
36-     " hello = tf.constant('Hello, TensorFlow!')\n "  ,
37-     " sess = tf.Session()\n "  ,
38-     " print(sess.run(hello)) \n "  ,
39-     " print tf.__version__" 
31+     " If you see \" Hello, TensorFlow!\" , everything is working well." 
4032   ]
4133  }
4234 ],
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments