We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2451ccf commit 3a458d2Copy full SHA for 3a458d2
configs/config/benchmark/linear_image_classification/imagenet1k/byol_transfer_in1k_linear.yaml
@@ -1,4 +1,6 @@
1
# @package _global_
2
+# BYOL:Bootstrap Your Own Latent - https://arxiv.org/abs/2006.07733
3
+# Configuration based on BYOL paper - Appendix C -- C.1
4
config:
5
VERBOSE: True
6
LOG_FREQUENCY: 200
vissl/losses/byol_loss.py
@@ -41,7 +41,9 @@ class BYOLLoss(ClassyLoss):
41
"""
42
This is the loss proposed in BYOL
43
- Bootstrap your own latent: (https://arxiv.org/abs/2006.07733)
44
- This function computes the loss and restores loss from checkpoints.
+ This class wraps functions which computes
45
+ - loss
46
+ - restores loss from checkpoints.
47
48
Config params:
49
embedding_dim (int): head output output dimension
0 commit comments