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
Hi,
In project LOCA, I found the pre-trained weights of the projection head are almost zeros.
The minimum reproducible code with the downloaded checkpoint is as below.
import numpy as np
from flax.training import checkpoints
checkpoint_path = 'loca_vbase_imnet1k'
jax_weights = checkpoints.restore_checkpoint(checkpoint_path, target=None)
for k, w in jax_weights['teacher_weights']['output_projection'].items():
for n, v in w.items():
print(k, n, v.shape, abs(v).min(), v.mean())
Hi,
In project LOCA, I found the pre-trained weights of the projection head are almost zeros.
The minimum reproducible code with the downloaded checkpoint is as below.
And, the corresponding results are
Are they supposed to be such small?
The text was updated successfully, but these errors were encountered: