Windows

Thumbnail of post image 066

階層表示したいフォルダでShift+右クリックし,PowerShellウィンドウをここに開くをクリック.

以下のtreeコマンドに引数/fをつけて入力

tree/f

C:.└─data├─test│ ├ ...

Python

Thumbnail of post image 172

└─data├─test│ ├─0│ │ train_0000010.tif│ │ train_0000011.tif│ │ train_0000012.tif│ │ train_0000013.tif│ │ train_0000014.t ...

Tensorflow

Thumbnail of post image 086

tensorboard --logdir=/run/Sep23_18-03-17_hogecloud9経由の場合tensorboard --bind_all --logdir ./logs

の後,ブラウザに以下を打ち込む

CNN,Keras,Python

Thumbnail of post image 177

vastee.hatenablog.com

の続き

今回は学習したモデルを使って花の名前を当てるプログラムを作成する.

import numpy as npfrom keras.preprocessing ...

CNN,Keras,Python

Thumbnail of post image 034

昨今様々な深層学習ライブラリが台頭してきたことにより,最新のソースコードも様々なライブラリを用いて書かれることが大きなって来た.

この為,いつも使っているpytorch以外のライブラリも触れるようにしておかなければならない ...

論文サマリ

Thumbnail of post image 009

CVPR2018の衛星画像コンテストで優勝した手法。コンテストのタスクは建物検知。

キモは建物の大きさ(small, medium, large)で分類したこと。

手順は非常にシンプルで、まず二値画像の正解ラベ ...

Tensorflow

Thumbnail of post image 028

TensorflowがRaspiに正式に対応したようだ。

正式対応に伴い、多数のブログでインストール方法やTIPSが色々公開されている。

私もRaspi 3B+をもっているので、インストールしたいなと考えている ...

Keras,Tensorflow

Thumbnail of post image 152

>>> from tensorflow.python.client import device_lib>>> print(device_lib.list_local_devices()) 2018-09- ...

論文サマリ

Thumbnail of post image 008

VQAタスクにおいて,文と画像のベクトルを統合する為の手法.

VQAのようなマルチモーダルなタスクだと,文と画像のベクトルを統合した際のデータ量が肥大化してしまうことが問題.

より

その問

Python

Thumbnail of post image 196

下のリストがあったとき,sortを使って昇順に並び替えを行うと,困ったことが起きる.

list1 = list1.sort()list1>>

そう,1の次に2が来ず,10が来てしまうのだ…