1. 程式人生 > >小宋深度學習之旅(小白入門教程)0

小宋深度學習之旅(小白入門教程)0

這是針對和我一樣非計算機專業小白開發人員,基於TensorFlow框架,Python語言,主要使用Windows平臺開發的深度學習,小白入門教程。

先put出一個示例程式碼

Hello World 程式碼:

    # encode : utf-8
    import tensorflow as tf
    print("Result is : ")
    hi = tf.constant("Hello TensorFlow World", shape=[1,1])
    print("Befor Session hi is : ", end="")
    print(hi)
    print(hi.shape)
    
    with tf.Session() as sess:
        
        hi = sess.run(hi)
        print("After Session hi is : ", end="")
        print(hi)
        print(hi.shape)
      
    """
    Result is :
	Befor Session hi is : Tensor("Const:0", shape=(1, 1), dtype=string)
	(1, 1)

	After Session hi is : [[b'Hello TensorFlow World']]
	(1, 1)
    """

程式碼介面:
在這裡插入圖片描述
執行結果:
在這裡插入圖片描述
後面我會從一個小白角度,從深度學習框架選取,程式語言選擇,開發平臺搭建,歷程學習開始帶領非計算機與軟體專業小白們進入深度學習旅程。不需要花費資金去購買高階的裝置,拿起身邊電腦就可以學習開發。
一步步從零開始開發深度學習應用,讓想要入門的小白們都可以學習體驗到深度學習樂趣
自己是非專業人員,入門深度學習半年時間,走過很多彎路,知道非專業人員入門困難,只希望通過展示自己入坑之旅,讓大家入門時少些痛苦。

CSDN:https://blog.csdn.net/xiaosongshine
GitHub:https://github.com/xiaosongshine/DeepLearning-TF-Freshman-Tutorial


希望追求夢想的人都能堅持到底,你必須足夠努力,才可以讓一切都毫不費力。