Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
---
|
3 |
+
tags:
|
4 |
+
- embeddings
|
5 |
+
- glove
|
6 |
+
- cc100
|
7 |
+
license: cc-by-sa-4.0
|
8 |
+
---
|
9 |
+
|
10 |
+
# CC100 GloVe Embeddings for TA_ROM Language
|
11 |
+
|
12 |
+
## Model Description
|
13 |
+
- **Language:** ta_rom
|
14 |
+
- **Embedding Algorithm:** GloVe (Global Vectors for Word Representation)
|
15 |
+
- **Vocabulary Size:** 350361
|
16 |
+
- **Vector Dimensions:** 300
|
17 |
+
- **Training Data:** CC100 dataset
|
18 |
+
|
19 |
+
## Training Information
|
20 |
+
We trained GloVe embeddings using the original C code. The model was trained by stochastically sampling nonzero elements from the co-occurrence matrix, over 100 iterations, to produce 300-dimensional vectors. We used a context window of ten words to the left and ten words to the right. Words with fewer than 5 co-occurrences were excluded for languages with over 1 million tokens in the training data, and the threshold was set to 2 for languages with smaller datasets.
|
21 |
+
|
22 |
+
We used data from CC100 for training the static word embeddings. We set xmax = 100, α = 3/4, and used AdaGrad optimization with an initial learning rate of 0.05.
|
23 |
+
|
24 |
+
## Usage
|
25 |
+
These embeddings can be used for various NLP tasks such as text classification, named entity recognition, and as input features for neural networks.
|
26 |
+
|
27 |
+
## Citation
|
28 |
+
If you use these embeddings in your research, please cite:
|
29 |
+
|
30 |
+
```bibtex
|
31 |
+
@misc{gurgurov2024lowremrepositorywordembeddings,
|
32 |
+
title={LowREm: A Repository of Word Embeddings for 87 Low-Resource Languages Enhanced with Multilingual Graph Knowledge},
|
33 |
+
author={Daniil Gurgurov and Rishu Kumar and Simon Ostermann},
|
34 |
+
year={2024},
|
35 |
+
eprint={2409.18193},
|
36 |
+
archivePrefix={arXiv},
|
37 |
+
primaryClass={cs.CL},
|
38 |
+
url={https://arxiv.org/abs/2409.18193},
|
39 |
+
}
|
40 |
+
```
|
41 |
+
|
42 |
+
## License
|
43 |
+
These embeddings are released under the [CC-BY-SA 4.0 License](https://creativecommons.org/licenses/by-sa/4.0/).
|