glazzova commited on
Commit
7b7c8f1
1 Parent(s): 356ffe5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -17,7 +17,7 @@ from transformers import ResNetForImageClassification, AutoImageProcessor
17
 
18
  processor = AutoImageProcessor.from_pretrained("glazzova/body_type")
19
  model = ResNetForImageClassification.from_pretrained('glazzova/body_type')
20
- image = Image.open('/Users/swag2004/Downloads/photo_2024-05-11 16.17.08.jpeg')
21
  inputs = processor(image, return_tensors="pt")
22
 
23
  with torch.no_grad():
 
17
 
18
  processor = AutoImageProcessor.from_pretrained("glazzova/body_type")
19
  model = ResNetForImageClassification.from_pretrained('glazzova/body_type')
20
+ image = Image.open('your_pic.jpeg')
21
  inputs = processor(image, return_tensors="pt")
22
 
23
  with torch.no_grad():