Fix code example
Browse files
README.md
CHANGED
@@ -46,8 +46,8 @@ Here is how to use this model:
|
|
46 |
>>> dataset = load_dataset("huggingface/cats-image")
|
47 |
>>> image = dataset["test"]["image"][0]
|
48 |
|
49 |
-
>>> feature_extractor = AutoFeatureExtractor.from_pretrained("microsoft/resnet-
|
50 |
-
>>> model = ResNetForImageClassification.from_pretrained("microsoft/resnet-
|
51 |
|
52 |
>>> inputs = feature_extractor(image, return_tensors="pt")
|
53 |
|
|
|
46 |
>>> dataset = load_dataset("huggingface/cats-image")
|
47 |
>>> image = dataset["test"]["image"][0]
|
48 |
|
49 |
+
>>> feature_extractor = AutoFeatureExtractor.from_pretrained("microsoft/resnet-18")
|
50 |
+
>>> model = ResNetForImageClassification.from_pretrained("microsoft/resnet-18")
|
51 |
|
52 |
>>> inputs = feature_extractor(image, return_tensors="pt")
|
53 |
|