DrRaja
DrRaja
For my data, I got the best pipeline by running TPOT training using the following parameters: ```python from tpot import TPOTClassifier tpot = TPOTClassifier(generations=5, population_size=100, verbosity=2, n_jobs=-1,random_state=1) ``` The best...
Hi, I trained a Multi-Label Text Classification Model with distilbert-base-uncased. The model works as intended when I use it through the SimpleTransfomers wrapper. However, when I upload the same model...
Was planning to try out the package but it just doesn't install using the command. ``` pip install bondai ``` This returns a numpy version error. Fixed that by removing...
Was wondering if you have any plans to provide the functionality to kill/cancel an async task? That could be quite useful for runaway tasks in my opinion.