2019年11月28日 星期四

[FB] 廣告

目的性 > 流量 > 再行銷(TA) => custeom audiance > 上素材 從 ads manager > camaigns > View Setup 可以看目標性 ad set > traffic > optimat (off) > audience > 選再行銷(擴大受眾365) > placements > automatic placements > budget > daily budget > continue === create ad > use existing post > confirm Send people to your website > traffic

[RPi] Donkey Car Track

https://diyrobocars.com/2019/07/22/official-oakland-race-rules-2019-edition/

2019年11月24日 星期日

[FB] 廣告

all ads => ads manager https://www.facebook.com/adsmanager 大量曝光 => Reach Campaign AUDIENCE 自訂廣告受眾 => 系統把所有人(曾經看過但未按讚)拉出來 => Assets => Audiences Create Audience => custom audience => facebook page => create audience

2019年11月12日 星期二

[AWS] SSH 和 vsFTPD 衝到


說來話長,長話短說。ssh 突然爛掉了,連不進去我的 instance。

錯誤訊息如下
debug1: ssh_exchange_identification: 220 (vsFTPd 3.0.3)

debug1: ssh_exchange_identification: 530 Please login with USER and PASS.

debug1: ssh_exchange_identification: 421 Timeout.


原來 Amazon 有技術服務的,只要付錢就可以了 QQ

他給了一個非常好的建議,就是先 detach

一些 mount point 或是設定就參考這篇吧。
https://n2ws.com/blog/how-to-guides/connect-aws-ebs-volume-another-instance



最後在經過把 vsftpd 移掉以後,重新attach,大師兄救回來了~

2019年11月8日 星期五

[keras] ValueError: Unknown initializer: GlorotUniform


Before:
from keras.models import load_model classifierLoad = load_model('model/modeltest.h5')
Works for me
import tensorflow as tf classifierLoad = tf.keras.models.load_model('model/modeltest.h5')

https://stackoverflow.com/questions/53183865/unknown-initializer-glorotuniform-when-loading-keras-model