andrewluo commited on
Commit
3550d34
1 Parent(s): d286efc

Update handler.py

Browse files
Files changed (1) hide show
  1. handler.py +5 -1
handler.py CHANGED
@@ -5,7 +5,11 @@ class EndpointHandler():
5
  def __init__(self, path=""):
6
  model = INSTRUCTOR(path)
7
  self.model = model
8
-
 
 
 
 
9
  def __call__(self, data: Dict[str, Any]) -> List[Dict[str, Any]]:
10
  """
11
  data args:
 
5
  def __init__(self, path=""):
6
  model = INSTRUCTOR(path)
7
  self.model = model
8
+ if torch.cuda.is_available():
9
+ self.device = torch.device("cuda")
10
+ self.model.to(self.device)
11
+ else:
12
+ self.device = torch.device("cpu")
13
  def __call__(self, data: Dict[str, Any]) -> List[Dict[str, Any]]:
14
  """
15
  data args: