エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
画像特徴空間の可視化 [TensorFlowでDeep Learning 19] - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
画像特徴空間の可視化 [TensorFlowでDeep Learning 19] - Qiita
import csv import tensorflow as tf import tensorflow_hub as hub module = hub.Module("https://tfhu... import csv import tensorflow as tf import tensorflow_hub as hub module = hub.Module("https://tfhub.dev/google/imagenet/mobilenet_v2_140_224/feature_vector/2") height, width = hub.get_expected_image_size(module) ch = 3 batch_size = 10 image_list = tf.convert_to_tensor(['images/img_{:04d}.jpg'.format(i+1) for i in range(2500)]) input_queue = tf.train.slice_input_producer([image_list], num_epochs=1,

