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
I'm experimenting with a simple model right now and I'm confused about whether or not I should expect the sentence transformer model to change during the training process.
# Define the model and training argumentsmodel=SetFitModel.from_pretrained(
"sentence-transformers/all-MiniLM-L6-v2",
multi_target_strategy="one-vs-rest",
use_differentiable_head=True,
head_params={"out_features": len(labels)},
labels=labels,
)
args=TrainingArguments(
batch_size=128,
# end_to_end=False,# body_learning_rate=10.0,num_epochs=4,
evaluation_strategy="no",
save_strategy="no",
load_best_model_at_end=True,
)
trainer=Trainer(
model=model,
args=args,
train_dataset=train_dataset,
eval_dataset=eval_dataset,
metric="accuracy",
column_mapping={
"text": "text",
"label": "label",
}, # Map dataset columns to text/label expected by trainer
)
The documentation for end_to_end implies that the only time that the underlying model will change is when this argument is set, but experimentally that isn't true. The underlying sentence transformer (the "body" as I understand it) seems to always be trained in the train() logic, which is hard coded to always call train_embeddings(). I determined that the body changed by comparing the output scores of my model as well as the embeddings generated by the base sentence transformer model and the one that is set to my model body after training.
Did I misunderstand the docs? The only way I can get this to not happen is to comment out the train_embeddings() call in the setlib library's train()here
The text was updated successfully, but these errors were encountered:
The underlying motivation for me: I'm interested in passing in pre computed sentence transformer embeddings instead of having my setfit model compute them internally because I already have them computed in another part of my system and I don't want to spend time recomputing them. That only makes sense if it's reasonable for me to expect that they shouldn't have changed, at that point they're effectively two different embedding models anyway.
I haven't looked at the code, but having read the literature, setfit works well because the underlying vector space is re-aligned to the classification task. So while you could probably get it to do what you want (just use a separate logistic regression model), my intuition says you will lose accuracy.
I'm experimenting with a simple model right now and I'm confused about whether or not I should expect the sentence transformer model to change during the training process.
The documentation for
end_to_end
implies that the only time that the underlying model will change is when this argument is set, but experimentally that isn't true. The underlying sentence transformer (the "body" as I understand it) seems to always be trained in thetrain()
logic, which is hard coded to always calltrain_embeddings()
. I determined that the body changed by comparing the output scores of my model as well as the embeddings generated by the base sentence transformer model and the one that is set to my model body after training.Did I misunderstand the docs? The only way I can get this to not happen is to comment out the
train_embeddings()
call in the setlib library'strain()
hereThe text was updated successfully, but these errors were encountered: