HSE-LAMBDA/ai4material_design

Extensive is actually the opposite of intensive

Closed this issue · 1 comments

model_params['model'].update({'extensive': target_is_intensive})

Also, I can't find any usage of this extensive. Does this mean it doesn't matter for GemNet?

Good catch!
No, extensive/intensive is required in line 22 we overide the configuration then those configurations are pass to initialize GemNet self.model = GemNetT(**self.config["model"], otf_graph=True)
The solution would be to just negate the intensive flag: model_params['model'].update({'extensive': not target_is_intensive})