發表文章

可學習UI link

http://huaban.com/ http://51mockup.com/
賭波 紀錄 本金5000. 盈利 + 1520 總共 6520 每日買1-3場 精選 2018-04-04 最佳投注 讓球星期二 13 祖雲達斯 (主) 對 皇家馬德里 (客) 客 [0] @ 1.76 $2000 $2,000.00$3,520.00

學習情緒管理也許是人生必須的

回想當年 2013年, 剛出茅蘆到社會工作,抱著什麼也願做,什麼也吃虧點,幫到就幫. 到今時今日才發覺,很多時候都錯的. 每人每日就只有24小時(廢話) 用時間去幫人,變相只會減少自己的時間. 返工為乜? 為學到野?  錯了, 到今時今日 先知 原來係錯. 返工為錢, 為賺錢 , 錢為咩?  為錢資源, 享受. 也許一世人 要窮很易, 要發達很難.

tensorflow 學習之(2_

tf.train API 解 equation, y = W*x +b ,  The completed trainable linear regression model is shown here: import numpy as np import tensorflow as tf # Model parameters W = tf . Variable ([. 3 ], dtype = tf . float32 ) b = tf . Variable ([-. 3 ], dtype = tf . float32 ) # Model input and output x = tf . placeholder ( tf . float32 ) linear_model = W * x + b y = tf . placeholder ( tf . float32 ) # loss loss = tf . reduce_sum ( tf . square ( linear_model - y )) # sum of the squares # optimizer optimizer = tf . train . GradientDescentOptimizer ( 0.01 ) train = optimizer . minimize ( loss ) # training data x_train = [ 1 , 2 , 3 , 4 ] y_train = [ 0 ,- 1 ,- 2 ,- 3 ] # training loop init = tf . global_variables_initializer () sess = tf . Session () sess . run ( init ) # reset values to wrong for i in range ( 1000 ):   sess . run ( train , { x : x_train , y : y_train }) # evaluate training accuracy curr_W , curr_b , curr_loss = sess . run

tensor flow 之學習 (1)

 上python 官網 down 3.5.x 版本 installer 係vs code 裝返 python 既 extension configure vs code setting  { "name" : "Python" , "type" : "python" , "request" : "launch" , "stopOnEntry" : true , "pythonPath" : "{YOURPATHFOR}/python.exe" , "program" : "${file}" , "cwd" : " {YOURPATHFOR} " , "env" : {}, "envFile" : "${workspaceRoot}/.env" , "debugOptions" : [ "WaitOnAbnormalExit" , "WaitOnNormalExit" , "RedirectOutput" ] }, 跟住 To install TensorFlow, start a terminal. Then issue the appropriate   pip3 install   command in that terminal. To install the CPU-only version of TensorFlow, enter the following command: C:\> pip3 install --upgrade tensorflow To install the GPU version of TensorFlow, enter the following command: C:\> pip3 install --upgrade