An open API service indexing awesome lists of open source software.

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

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
```