moooji commited on
Commit
970b2f7
1 Parent(s): e539b30

Update handler.py

Browse files
Files changed (1) hide show
  1. handler.py +1 -1
handler.py CHANGED
@@ -10,7 +10,7 @@ device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
10
  class EndpointHandler():
11
  def __init__(self, path=""):
12
  self.model = CLIPModel.from_pretrained("openai/clip-vit-large-patch14-336").to(device)
13
- self.processor = CLIPProcessor.from_pretrained("openai/clip-vit-large-patch14-336").to(device)
14
 
15
  def __call__(self, data: Any) -> List[float]:
16
  inputs = data.pop("inputs", data)
 
10
  class EndpointHandler():
11
  def __init__(self, path=""):
12
  self.model = CLIPModel.from_pretrained("openai/clip-vit-large-patch14-336").to(device)
13
+ self.processor = CLIPProcessor.from_pretrained("openai/clip-vit-large-patch14-336")
14
 
15
  def __call__(self, data: Any) -> List[float]:
16
  inputs = data.pop("inputs", data)