hanzceo commited on
Commit
52ac1d3
·
verified ·
1 Parent(s): 3f2478c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -4
README.md CHANGED
@@ -2,9 +2,23 @@
2
  tags:
3
  - model_hub_mixin
4
  - pytorch_model_hub_mixin
 
 
 
 
 
 
 
 
5
  ---
6
 
7
- This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
8
- - Code: [More Information Needed]
9
- - Paper: [More Information Needed]
10
- - Docs: [More Information Needed]
 
 
 
 
 
 
 
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.