I’m trying to train my model with the ConveRT pipeline, and would like to explore the fine-tuning of the hyperparameters.
I’m getting this error:
Training model 'config_388' failed. Error: If embeddings are shared, text features and label features must coincide. Check the output dimensions of previous components.
@tiziano i believe you need to set the intent_tokenization_flag and the intent_split_symbol parameters in your tokenizer, see here. This is because you set the share_hidden_layers to true, so the intent labels need to be featurized too
Can you please tell me where can I find more information about the functioning of the components? In the docs each hyperparameter has a brief line of text for explaining what it is, but often it’s not enough for understanding.
As an example:
loss_type sets the type of the loss function, it should be either softmax or margin