You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Being able to train the model then save it's weights poetry run python -n src models --model camembert --output-weights models/xxxxx --train-split xxx.csv
Save the weights in remote s3 dvc add models/xxxxxgit add && git commitdvc push -r s3-remote
Being able to load model weights and predict on a given dataset
Create a unit test which train and predict from a csv of 100 examples which is push to github (in src/tests/test_dataset.csv)
If necessary update the .github/workflows/cicd.yaml and the .42AI/pre-commit.git to pass the new unit test
The text was updated successfully, but these errors were encountered:
📖 Describe what you want
Make a deeplearning baseline with Hugging Face and Pytorch.
Relevant tutorials to follow:
Relevant documentation:
✔️ Definition of done
poetry run python -n src models --model camembert --output-weights models/xxxxx --train-split xxx.csv
dvc add models/xxxxx
git add && git commit
dvc push -r s3-remote
src/tests/test_dataset.csv)
.github/workflows/cicd.yaml
and the.42AI/pre-commit.git
to pass the new unit testThe text was updated successfully, but these errors were encountered: