hyunjongkimmath
commited on
Commit
•
23c3126
1
Parent(s):
d727bc5
Add model
Browse files- README.md +25 -6
- model.pkl +3 -0
- pyproject.toml +3 -0
README.md
CHANGED
@@ -1,13 +1,32 @@
|
|
1 |
---
|
2 |
-
|
|
|
3 |
---
|
4 |
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
---
|
7 |
-
math_text_tag_categorization is a multi-label text classification model. It was trained via the ULMFiT approach (cf. [The fastai book](https://github.com/fastai/fastbook)'s presentation of ULMFiT) - the author of this repository fine-tuned a language model available in [fast.ai](https://github.com/fastai) on a corpus of mathematical text in LaTeX, then fine-tuned the encoder obtained from the fine-tuned language model for a multi-label classification.
|
8 |
|
9 |
-
# Intended uses & limitations
|
10 |
|
11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
|
13 |
-
|
|
|
|
1 |
---
|
2 |
+
tags:
|
3 |
+
- fastai
|
4 |
---
|
5 |
|
6 |
+
# Amazing!
|
7 |
+
|
8 |
+
🥳 Congratulations on hosting your fastai model on the Hugging Face Hub!
|
9 |
+
|
10 |
+
# Some next steps
|
11 |
+
1. Fill out this model card with more information (see the template below and the [documentation here](https://huggingface.co/docs/hub/model-repos))!
|
12 |
+
|
13 |
+
2. Create a demo in Gradio or Streamlit using 🤗 Spaces ([documentation here](https://huggingface.co/docs/hub/spaces)).
|
14 |
+
|
15 |
+
3. Join the fastai community on the [Fastai Discord](https://discord.com/invite/YKrxeNn)!
|
16 |
+
|
17 |
+
Greetings fellow fastlearner 🤝! Don't forget to delete this content from your model card.
|
18 |
+
|
19 |
+
|
20 |
---
|
|
|
21 |
|
|
|
22 |
|
23 |
+
# Model card
|
24 |
+
|
25 |
+
## Model description
|
26 |
+
More information needed
|
27 |
+
|
28 |
+
## Intended uses & limitations
|
29 |
+
More information needed
|
30 |
|
31 |
+
## Training and evaluation data
|
32 |
+
More information needed
|
model.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b4b3eb7007440cc946ca872887f5f99c957d4e95573efc43d7196a5136b02f68
|
3 |
+
size 188960371
|
pyproject.toml
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
[build-system]
|
2 |
+
requires = ["setuptools>=40.8.0", "wheel", "python=3.10.6", "fastai=2.7.9", "fastcore=1.5.22"]
|
3 |
+
build-backend = "setuptools.build_meta:__legacy__"
|