Hi, when I try to use the model with:
model = MOMENTPipeline.from_pretrained(
"AutonLab/MOMENT-1-large",
model_kwargs={
'task_name': 'classification',
'n_channels': 1,
'num_class': num_classes,
},
)
And then I print:
print(model.task_name)
I get: reconstruction
Hi, when I try to use the model with: model = MOMENTPipeline.from_pretrained( "AutonLab/MOMENT-1-large", model_kwargs={ 'task_name': 'classification', 'n_channels': 1, 'num_class': num_classes, }, )
And then I print: print(model.task_name) I get: reconstruction
Please help me figure out why. Thanks