Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finetuning with Artifacts #67

Open
wangqiuwen1006 opened this issue Aug 8, 2024 · 1 comment
Open

Finetuning with Artifacts #67

wangqiuwen1006 opened this issue Aug 8, 2024 · 1 comment

Comments

@wangqiuwen1006
Copy link

During the finetuning process, I noticed that the old version of v2 model might produce some grid-like artifacts, whereas the updated v2 version does not have these artifacts. Could you please explain what specifically might be causing this phenomenon?

@lpiccinelli-eth
Copy link
Owner

The grid artifacts are due to positional encoding dominating the actual features.
Typically it happens in low signal-to-noise regions, like quite texture-less or far away regions.
What we changed is how we compute the scale and shift invariant region during training, namely, we compute the statistics only on valid regions (not on the padded regions that appear due to resizing augmentations), this might have pushed the network to ignore the padded regions, which are like the mentioned low SNR regions that usually present those kind of artifacts.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants