李宏毅RL notes
Notes
https://hackmd.io/@shaoeChen/Bywb8YLKS/https%3A%2F%2Fhackmd.io%2F%40shaoeChen%2FrkiOH4MoS
https://medium.com/intro-to-artificial-intelligence/the-actor-critic-reinforcement-learning-algorithm-c8095a655c14
實作
https://towardsdatascience.com/reinforcement-learning-w-keras-openai-actor-critic-models-f084612cfd69
https://keras.io/ex...
Best Practice of Docker
RUN
source之類無效
在container運行前作的事不會保留到之後
ex: roscore在這裡下, docker run後一樣不存在
ADD
build時與RUN wget一樣都有可能不會被cache
https://github.com/moby/moby/issues/12361
github的話個人只在windows的docker遇到, linux會正常cache
用法ADD http://example.com/big.tar.xz /usr/src/things/
ARG
只在build時有效, 也可以在build時帶入--build-arg
...
React_JSX101
你也可以讓React搭配TypeScript, 這之後別篇會講
Learn from MERN stack:
https://www.youtube.com/watch?v=ngc9gnGgUdA
Create a new project
npx create-react-app my-app
cd my-app
npm start
會自動跳出default project產生的網頁頁面(http://localhost:3000/)
demo的index.js的進入點在public資料夾中的index.html, 裡面有個div的id是root
如果想以絕對路徑的方式來import
在專案的根目錄底下可以新增一支 jsconfig.json 的檔案
// ./js...
TypeScript101
Create a new project
$ npm init -y # 初始化 npm
$ npm install --save-dev typescript # 安裝 typescript
$ npx tsc --init # 產生 TS 設定檔 tsconfig.json
$ npx ts-node index.ts
# 將 TS 編譯成 JS
$ tsc # Run a compile based on a backwards look through the fs for a tsconfig.json
$ tsc index.ts
$ tsc src/*.ts # Transpile any .ts ...
ROS with yolov4
ROS環境配置
基礎需求
boost (C++ lib)
sudo apt install libboost-all-dev
https://stackoverflow.com/questions/12578499/how-to-install-boost-on-ubuntu
apt裝opencv
基本上與darknet需求同
Install ROS
==http://wiki.ros.org/cn/melodic/Installation==
安裝步驟說明:
http://wiki.ros.org/Installation/Ubuntu
https://ithelp.ithome.com.tw/ar...
GCP spark and hadoop
Hadoop & Spark
GCP dataproc
基礎設定: https://towardsdatascience.com/step-by-step-tutorial-pyspark-sentiment-analysis-on-google-dataproc-fef9bef46468
建立cluster
連接到web UI/ ssh
spark基礎操作
到/usr/lib/spark下: cd $SPARK_HOME
執行./bin/spark-shell即可看到以下
爬蟲入門
爬蟲
Requests套件
BS4
https://github.com/johnny12150/IM711/blob/master/inClass02/0420.ipynb
進階使用
https://github.com/johnny12150/IM711/blob/master/inClass03/0504.ipynb
BeautifulSoup
https://beautifulsoup.readthedocs.io/zh_CN/v4.4.0/
from bs4 import BeautifulSoup
soup = BeautifulSoup(res, 'html.parser')
soup.title
# <title>The...
Server Manual (User)
Dandanman使用手冊
Notation:
somebody: 本機使用者帳號
PC: 本機
user_name: 遠端主機帳號
user_password: user_name對應密碼
$: bash prompt
#: root prompt
env_name: 虛擬環境名稱
~: 通常是shell環境變數中的$HOME,也就是/home/user_name這個目錄
Other:
nano為一個輕量級的編輯器,是很多linux distro有附裝的編輯器,厲害的大大們也可以用vim、emacs等(附帶一提,nano中的^為ctrl鍵; M為alt鍵)
.bashrc Example
新硬碟使用...
10 post articles, 2 pages.