dariush-bahrami
commited on
Commit
•
ee9149d
1
Parent(s):
cf73dac
Fix wrong model name in ConvNextV2ForImageClassification
Browse files
README.md
CHANGED
@@ -44,7 +44,7 @@ dataset = load_dataset("huggingface/cats-image")
|
|
44 |
image = dataset["test"]["image"][0]
|
45 |
|
46 |
preprocessor = AutoImageProcessor.from_pretrained("facebook/convnextv2-nano-22k-384")
|
47 |
-
model = ConvNextV2ForImageClassification.from_pretrained("facebook/convnextv2-
|
48 |
|
49 |
inputs = preprocessor(image, return_tensors="pt")
|
50 |
|
|
|
44 |
image = dataset["test"]["image"][0]
|
45 |
|
46 |
preprocessor = AutoImageProcessor.from_pretrained("facebook/convnextv2-nano-22k-384")
|
47 |
+
model = ConvNextV2ForImageClassification.from_pretrained("facebook/convnextv2-nano-22k-384")
|
48 |
|
49 |
inputs = preprocessor(image, return_tensors="pt")
|
50 |
|