spolivin commited on
Commit
d9341c2
1 Parent(s): af308c8

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -0
README.md ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Language Detection Model
2
+
3
+ The model presented in the following repository represents a fine-tuned version of `BertModelForSequenceClassification`
4
+ pretrained on [multilingual texts](https://huggingface.co/bert-base-multilingual-uncased).
5
+
6
+ ## Training/fine-tuning
7
+
8
+ The model has been fine-tuned based on [Language Detection](https://www.kaggle.com/datasets/basilb2s/language-detection)
9
+ dataset found on *Kaggle*. The entire process of the dataset analysis as well as a complete description of the training procedure
10
+ can be found in [one of my *Kaggle* notebooks](https://www.kaggle.com/code/sergeypolivin/language-recognition-using-bert) which has been used for the purpose of a faster model training on *GPU*.
11
+
12
+ ## References
13
+
14
+ 1. [BERT multilingual base model (uncased)](https://huggingface.co/bert-base-multilingual-uncased)
15
+ 2. [Language Detection](https://www.kaggle.com/datasets/basilb2s/language-detection)