おいも貴婦人ブログ

生物系博士課程満期退学をしたAIエンジニアのブログ。

2018-01-01から1年間の記事一覧

Computational Protein Design with Deep Learning Neural Networks

論文要約 タンパク質のアミノ酸種類予測タスク(半教師ありみたい) 最高精度38.3% 先行研究より3%アップ www.nature.com

Macのemacsでpdfをビューできない時。

まずは、emacsにpdf-toolsをインストールするために以下のコマンドで必要なソフトウェアをインストールする。 $ brew install automake poppler インストールが終われば、emacsを開き、 M-x package-list-packages を入力し、pdf-toolsをインストールする。…

Tensorflowでのモデルの定義の仕方

これくらいでいいんじゃないかと思っている。 import tensorlfow as tf class Model(object): def __init__(self): pass def build(self): pass def __call__(self, x): pass

gitでタグをcheckout

毎回毎回調べているので書いておきます。 $ git tag -l でタグの一覧を取得。 $ git checkout -b tag_name refs/tags/v0.0.1