Diffusers
Safetensors
PixCellPipeline
srikarym commited on
Commit
6bbb2c8
·
verified ·
1 Parent(s): 0af40e2

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -72,7 +72,7 @@ image = Image.open(path)
72
  # Extract UNI embedding from the image
73
  uni_inp = transform(image).unsqueeze(dim=0)
74
  with torch.inference_mode():
75
- uni_emb = uni_model(uni_inp.to(device)).unsqueeze(dim=0)
76
 
77
  print("Extracted UNI:", uni_emb.shape)
78
 
 
72
  # Extract UNI embedding from the image
73
  uni_inp = transform(image).unsqueeze(dim=0)
74
  with torch.inference_mode():
75
+ uni_emb = uni_model(uni_inp.to(device))
76
 
77
  print("Extracted UNI:", uni_emb.shape)
78