小宋深度学习之旅(小白入门教程)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
希望追求梦想的人都能坚持到底,你必须足够努力,才可以让一切都毫不费力。

猜你喜欢

转载自blog.csdn.net/xiaosongshine/article/details/82847725