Submitted by Linear-- t3_11bcklh in MachineLearning
For the model, basically, both SLL and SL requires it to learn a mapping from X(input) to Y(label), (or a probability distribution of the label). And usually, the optimization processes for both are basically the same, at least for deep learning.
What's specific to SSL is just that, it's already labelled so no extra labelling is required. This facilitates pre-training from a much larger dataset since hand-labelling is expensive.
cthorrez t1_j9x8x1b wrote
The methods and models are identical yep. It's basically just to denote that whether the labels were assigned by a human or determined automatically.