https://github.com/zeionara/fastai-text-classification
First attempts to utilize s4tf framework for solving text-classification problem using a pretrained fastai model
https://github.com/zeionara/fastai-text-classification
Last synced: 4 months ago
JSON representation
First attempts to utilize s4tf framework for solving text-classification problem using a pretrained fastai model
- Host: GitHub
- URL: https://github.com/zeionara/fastai-text-classification
- Owner: zeionara
- License: apache-2.0
- Created: 2020-04-30T09:57:07.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-01T12:04:44.000Z (about 5 years ago)
- Last Synced: 2025-01-02T07:46:19.807Z (5 months ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 918 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Fastai text classification
Possible usage:
```sh
( \
START_TIME=$SECONDS && \
swift build &&
.build/debug/fastai-text-classification \
--dataset-key data \
--min-lm-epochs 2 \
--max-lm-epochs 7 \
--min-classifier-epochs 5 \
--max-classifier-epochs 10 \
--max-unfrozen-layers 5 \
&& echo "Finished in $((SECONDS - START_TIME)) seconds" \
) |& tee log.txt
```