Skip to content

simecek/Czech-ULMFiT

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ULMFiT for Czech

ULMFiT

ULMFiT paper appeard in January 2018 and pioneered transfer learning for NLP data. ULMFiT runs in three steps: first, train a language model, then fine-tune it to a specific task and finally use the fine-tuned model for the final prediction. The method is described in the following paper and implemented in fastai package.

📝 Howard, Jeremy, and Sebastian Ruder. "Universal language model fine-tuning for text classification." arXiv preprint arXiv:1801.06146 (2018).

Slavic and other morphologically rich languages need a special preprocessing (sentencepiece instead of spaCy) as explained in the following paper for Polish.

📝 Czapla, Piotr, Jeremy Howard, and Marcin Kardas. "Universal Language Model Fine-Tuning with Subword Tokenization for Polish." arXiv preprint arXiv:1810.10222 (2018).

ULMFiT Model for the Czech Language

I have trained ULMFiT on Czech Wikipedia as a hobby project. To my knowledge, this is the first ULMFiT model for Czech language.

Notebook(s): nn-czech.ipynb

Weights: cs_wt.pth, cs_wt_vocab.pkl, spm.model, spm.vocab

With P4 Tesla GPU and Google Cloud virtual machine specified here, the training took ~28 hours. I was closely following the recent ULMFiT lecture from fast.ai NLP course.

Experiments

The experiments are still a work in progress (help needed! do you know any good Czech sentiment benchmark?). I have found a couple of datasets in the following paper:

📝 Habernal, Ivan, Tomáš Ptáček, and Josef Steinberger. "Sentiment analysis in czech social media using supervised machine learning." Proceedings of the 4th workshop on computational approaches to subjectivity, sentiment and social media analysis. 2013.

Data: http://liks.fav.zcu.cz/sentiment/ (Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License)

As a proof of concept, I have performed sentiment classification of ~60K Czech movie reviews:

  1. CSFD movie dataset: 91,381 movie reviews (30,897 positive, 30,768 neutral, and 29,716 negative reviews) from the Czech Movie Database. In this first experiment, I omitted neutral reviews and made a classifier of positive vs. negative reviews only (90% used for training, 10% for validation). The achieved accuracy was 94.5%.

Notebook: nn-czech.ipynb (same as for language model training)

Colab: CSFD_retrained_colab.ipynb This demonstrates how to fine-tune the language model for classification (here - the sentiment of movie reviews). I have saved the final sentiment classifier with 94.5% accuracy can be downloaded as cs_csfd_2classes_945.pkl. The training was done on Colab Pro, Tesla P100-PCIE-16GB GPU.

Demo: CSFD_demo.ipynb For users just interested in sentiment analysis, this is a no-fuss demo how to setup the environment, load the model and get a sentiment prediction for a given text.

Web app: I reshaped the demo script into a simple web app, the code is living in detektor_slunickovosti repo (in Czech).

Acknowledgments

This repo is a little dwarf standing on the shoulder of giants. Let me thank at least a few of them:

  • Jeremy Howard, Rachel Thomas and the whole fast.ai team for ULMFiT developement and making an addition of new languages super simple with the last fastai version. Also, Piotr Czapla for subword tokenization idea and the Polish ULMFiT model.

  • Karla Fejfarova for introducing me to ULMFiT a year ago. Katerina Veselovska for a motivation after her recent NLP talk at ML meetup in Brno.

  • Google for free Google Cloud credits.