Update README.md
Browse files
README.md
CHANGED
|
@@ -2,9 +2,23 @@
|
|
| 2 |
tags:
|
| 3 |
- model_hub_mixin
|
| 4 |
- pytorch_model_hub_mixin
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
---
|
| 6 |
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
tags:
|
| 3 |
- model_hub_mixin
|
| 4 |
- pytorch_model_hub_mixin
|
| 5 |
+
license: wtfpl
|
| 6 |
+
datasets:
|
| 7 |
+
- bobox/OpenbookQA-4ST
|
| 8 |
+
language:
|
| 9 |
+
- en
|
| 10 |
+
base_model:
|
| 11 |
+
- LocalWisdom/PurpleCBoW
|
| 12 |
+
pipeline_tag: feature-extraction
|
| 13 |
---
|
| 14 |
|
| 15 |
+
# PurpleFastText
|
| 16 |
+
|
| 17 |
+
A simple implementation of FastText from https://arxiv.org/pdf/1607.04606.
|
| 18 |
+
|
| 19 |
+
Made for beginner to reference and learn from. This repository contains `tokenizer.json`, `model.safetensors`, and `train.ipynb`.
|
| 20 |
+
The training workflow use modern libraries like HuggingFace's datasets and tokenizers. The rest is just PyTorch.
|
| 21 |
+
|
| 22 |
+
There are some algorithm which we decided to not implement which is the hashing function from the original paper.
|
| 23 |
+
The resulting training workflow is not as fast as the paper suggest, maybe it is because of the use of Python instead
|
| 24 |
+
of [Hogwild!](https://people.eecs.berkeley.edu/~brecht/papers/hogwildTR.pdf) instead.
|