發表文章

目前顯示的是 1月, 2022的文章

Python Jupyter Notebook

圖片
1. 線上編輯: https://colab.research.google.com/drive/1f1YLwAoFjdhq9IOtkuZr7Iq35bucJz2k https://yanwei-liu.medium.com/%E5%A6%82%E4%BD%95%E7%B7%9A%E4%B8%8A%E4%BD%BF%E7%94%A8google%E7%89%88%E7%9A%84jupyter-notebook-colaborator-e9fe3475e2da 2. Python 大數據 爬取資料 https://medium.com/seaniap/python%E7%88%AC%E8%9F%B2-%E7%B6%B2%E8%B7%AF%E6%95%B8%E6%93%9A%E8%B3%87%E6%96%99%E7%9A%84%E7%88%AC%E5%8F%96%E6%8A%80%E5%B7%A7-1-69c267b33273 2.1 撈資料 test script: url = 'https://www.google.com.tw' html = requests.get(url) html.text html.content html.status_code if  html.status_code ==  200  :   print ( "OK" )   print (html.text) else :     print ( "connection Fail" ) 2.2 使用requests模組下載網頁資料 https://nkust.gitbook.io/python/qu-ji-qiao import  requests url= "https://tw.stock.yahoo.com/news_list/url/d/e/N4.html" html =requests.get(url).text print (html) 2.3 抓google Map 資料 https://medium.com/datainpoint/%E5%A6%82%E4%BD%95%E7%8D%B2%E5%8F%96%E8%B3%8...

神經網路

 https://www.youtube.com/watch?v=68BZ5f7P94E&ab_channel=StatQuestwithJoshStarmer 激勵函數介紹 https://cvfiasd.pixnet.net/blog/post/275774124-%E6%B7%B1%E5%BA%A6%E5%AD%B8%E7%BF%92%E6%BF%80%E5%8B%B5%E5%87%BD%E6%95%B8%E4%BB%8B%E7%B4%B9 softplus, ReLu, Sigmoid 都是一種激活函式 https://zhuanlan.zhihu.com/p/48776056 statequest web https://statquest.org/ BackPropagation 反向推導 https://kknews.cc/zh-tw/tech/e8lpkq.html https://wenwu53.com/backpropagation/ 微分 https://www.youtube.com/watch?v=G9feQfwpdKU&ab_channel=%E6%95%B8%E5%AD%B8%E8%80%81%E5%B8%AB%E5%BC%B5%E6%97%AD https://www.youtube.com/watch?v=UK1OtGmPPKg&ab_channel=chengsak

眼鏡 線上

 https://www.facebook.com/messenger_media?thread_id=1244708850&attachment_id=1011645822919161&message_id=mid.%24cAAAAACboExyB__eUI17zrI7QI-BU https://shopee.tw/%E8%B6%85%E8%BC%95%E9%88%A6%E9%8F%A1%E6%A1%86-%E8%B6%85%E8%96%84%E9%88%A6%E5%A5%88%E7%B1%B3%E9%8D%8D%E8%86%9C%E9%8F%A1%E7%89%87-%E6%8A%97%E8%97%8D%E5%85%89%E7%9C%BC%E9%8F%A1-%E8%BF%91%E8%A6%96%E7%9C%BC%E9%8F%A1-%E9%85%8D%E7%9C%BC%E9%8F%A1-%E9%98%B2%E8%97%8D%E5%85%89%E7%9C%BC%E9%8F%A1-%E6%BF%BE%E8%97%8D%E5%85%89%E7%9C%BC%E9%8F%A1-%E8%AE%8A%E8%89%B2%E9%8F%A1%E7%89%87-%E6%9C%89%E5%BA%A6%E6%95%B8%E7%9C%BC%E9%8F%A1-H9017-i.48865649.6804470540?sp_atk=2c06e87f-98e4-4ae6-b7c4-fbb0827450b1

python 畫圖

  Plotly Express https://waynestalk.com/python-choropleth-map/ https://stackoverflow.com/questions/69168093/plotly-marker-size-relative-to-data-to-plot-interactive-wafer-map https://awesomeopensource.com/project/guanghaofan/wafermap

python 畫圖

環境安裝:  https://www.youtube.com/watch?v=wqRlKVRUV_k Installing Matplotlib in Visual Studio Code: https://www.youtube.com/watch?v=ThU13tikHQw https://www.youtube.com/watch?v=QYLCXLQo1Sc