Currently when adding the checkpoint to .gitattributes file, we will add the filter=theta to any line that matches our model checkpoint. This might be over eager.
In the case where they have a rule like *.pt that they are tracking with some overfilter, like git lfs, does adding our filter to this attribute (instead of adding an exact match rule at the end) cause issues? Either with other files that match this pattern or our model getting these filters run on it?
Part of this hinges on how git handles multiple filters and multiple matches.
Currently when adding the checkpoint to
.gitattributesfile, we will add thefilter=thetato any line that matches our model checkpoint. This might be over eager.In the case where they have a rule like *.pt that they are tracking with some overfilter, like git lfs, does adding our filter to this attribute (instead of adding an exact match rule at the end) cause issues? Either with other files that match this pattern or our model getting these filters run on it?
Part of this hinges on how git handles multiple filters and multiple matches.