lluisgomez / ConTextTransformer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ConTextTransformer

A simple multi-modal Transformer model for fine-grained image classification on the Con-Text dataset.

Using scene text (when available) provides high-level semantic information that is useful for the task.

In the ConTextTransformer we first use three pre-trained models for feature extraction: a ResNet50, an OCR, and the FastText word embedding. Then we project the visual (ResNet) and textual (FastText) features to a common dimensionality (Linear Projections) and we feed them into the Tansformer Encoder. Finally, the MLP head takes the output feature of the CLS token and predicts one of the classes with Softmax.

ConTextTransformer diagram

About


Languages

Language:Jupyter Notebook 98.2%Language:Python 1.8%