Closed wasiahmad closed 8 months ago
Issue #, if available:
Description of changes: Instead of
model = AutoModelForSequenceClassification.from_pretrained(args.model_name_or_path, trust_remote_code=True)
we should use:
model = AutoModelForSequenceClassification.from_pretrained( args.model_name_or_path, config=config, trust_remote_code=True )
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
Issue #, if available:
4
Description of changes: Instead of
we should use:
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.