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

[2022/10/27]Machine Learning 輪講 #167

Open nogawanogawa opened 1 year ago

nogawanogawa commented 1 year ago

Why

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

prev. https://github.com/wantedly/machine-learning-round-table/issues/165

What

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

zerebom commented 1 year ago

Reflash Dropout in Image Super-Resolution

参考: https://deeplearning.jp/reflash-dropout-in-image-super-resolution/

nogawanogawa commented 1 year ago

From Query-By-Keyword to Query-By-Example: LinkedIn Talent Search Approach

論文URL

https://arxiv.org/abs/1709.00653

著者

Viet Ha-Thuc, Yan Yan, Xianren Wu, Vijay Dialani, Abhishek Gupta, Shakti Sinha

会議

CIKM '17

背景

通常タレント検索ではキーワードに基づく検索が行われるが、画像検索などの分野ではQuery-By-Exampleという手法も行われている。これは、検索クエリを単語ではなく、実際のアイテム例を指定し、そこからクエリを構築して検索を行う手法である。

image

タレント検索の文脈でQuery-By-Exampleが適用されたケースは珍しく、これまでキーワード検索しか行ってこなかった場合、検索モデルの構築に必要なログが存在しないという問題がある。

目的

タレント検索の分野でのQuery-By-Exampleの実現

アプローチ

image

image

image

memo

https://github.com/nogawanogawa/paper_memo/issues/51

Hayashi-Yudai commented 1 year ago

Metapath-guided Heterogeneous Graph Neural Network for Intent Recommendation

metapathによってグラフ構造を作って、ユーザーの検索するクエリを予測するモデルを作ったという話

image

グラフを作る際にいくつかの種類のmetapathを考えている。例えば、

image

Userのembeddingを作るときには UIQとUQIのmetapathを使う。UIQのmetapathではItemがヒットするQueryのembeddingを集約してItemのembeddingを作って、UserのクリックしたItemのembeddingを集約してUserのembeddingを作っている。UQIの方も基本的には同じ感じ。

AUCを使って性能を評価

image