Train via the Sentence Transformers Trainer from ST v3 #554
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello!
Pull Request overview
Details
In v1 of SetFit, I moved from the old
model.fittraining from Sentence Transformers (as it didn't have e.g. loss logging, etc.) to a custom training loop that does. However, since then, Sentence Transformers v3 has released, which also added all of the features that were previously lacking. To simplify the training moving forward, the training is now (once again) deferred to Sentence Transformers.Because both the old and new training approach are based on the
transformersTrainer, we don't need to make a lot of changes. I've worked to try and prevent breaking changes, e.g. updating the Sentence Transformers callbacks such that it still returns a SetFitModel like before.