wantedly / machine-learning-round-table

Gather around the table, and have a discussion to catch up the latest trend of machine learning 🤖
https://www.wantedly.com/projects/391912
297 stars 2 forks source link

[2020/07/02]Machine Learning 輪講 #56

Open agatan opened 4 years ago

agatan commented 4 years ago

Why

Machine Learning 輪講は最新の技術や論文を追うことで、エンジニアが「技術で解決できること」のレベルをあげていくことを目的にした会です。

prev.

What

話したいことがある人はここにコメントしましょう! 面白いものを見つけた時点でとりあえず話すという宣言だけでもしましょう!

hakubishin3 commented 4 years ago

SmoothMix: A Simple Yet Effective Data Augmentation to Train Robust Classifiers

http://openaccess.thecvf.com/content_CVPRW_2020/html/w45/Lee_SmoothMix_A_Simple_Yet_Effective_Data_Augmentation_to_Train_Robust_CVPRW_2020_paper.html

CutMixなどのRegional dropoutは画素値に対して急激な変化を与える (strong-edgeなmask). が, これが畳み込み演算に影響を与えることやNNがこういう特徴表現を持ってしまうことを懸念している. そこで滑らかなマスク (soft-edgeなmask) で2つの画像をmixさせたaugmentationを導入することで, Image Classification taskの精度が向上した.

スクリーンショット 2020-06-21 0 20 16
hiroto0227 commented 4 years ago

A Scalable Hybrid Research Paper Recommender System for Microsoft Academic

https://arxiv.org/pdf/1905.08880.pdf

Motivation

手法

評価

スクリーンショット 2020-07-02 18 28 49

hiroto0227 commented 4 years ago

Wide & Deep Learning for Recommender Systems

https://arxiv.org/abs/1606.07792

モチベーション

手法

スクリーンショット 2020-07-02 18 11 49

検証方法

スクリーンショット 2020-07-02 18 13 43

yuko-i commented 4 years ago

PatchUp

畳み込みニューラルネットワークの正則化手法の提案 https://arxiv.org/abs/2006.07794

NNの正則化の方法でDropoutは、fully connectedな層では効くが畳み込みだと効果が低い。 (SpatialDropoutという特徴量マップ全体を削除するもの、DropBlockというランダムな連続ブロックを削除するものもある)

提案されているPatchUpでは、ミニバッチ内のランダムなサンプルの特徴量マップ内の連続するブロックをマスキングし、これらのブロックを混合(Soft PatchUp)または交換(Hard PatchUp)することで,中間層で正則化を行う。

Screenshot 2020-07-02 17 46 11

Pytorchのソースコードがある。 https://github.com/chandar-lab/PatchUp/blob/master/modules/patchup.py