# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/d2hh53q
使用 Go 語言上線 TensorFlow 模型**
【導讀】本文作者介紹了 Go 語言部署 TensorFlow 模型的實踐。昨天搞了一天用 Go 語言部署 TensorFlow 模型,把整個過程記錄一下,以備大家參考(現在沒有題圖,以後在搞一個圖)。首先我們要有一個已經保存好的 TensorFlow 模型,也就是. pb 文件。這個文件固化了計算圖和權重,Go 語言只需要根據這個代碼跑相應的 Session 就行了。關於如何產生. pb 文件,如 ⌘ Read more