2019-06-01から1ヶ月間の記事一覧

Semantic Instance Segmentation with a Discriminative Loss Function

元画像のpixelごとの特徴量をDNNで抽出し, その座標を学習することでsegmentationを行う手法を学んだ. 今回は以下のリンク先を非常に参考にしています. 画像は論文より引用.arxiv.org github.com 元論文の概要 目的はinstance segmentationのアプローチの提…

DCGANで顔生成

顔生成した. discriminatorとgenerator def generator_model(input_shape): input_ch = 1024 inputs = Input(shape=input_shape) x = Dense(input_ch*8*8)(inputs) x = ReLU()(x) x = Reshape((8, 8, input_ch))(x) x = BatchNormalization(momentum=0.9)(x)…