p1atdev commited on
Commit
2068781
·
1 Parent(s): 9432c1a

chore: use cuda

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,6 +16,7 @@ MODEL_NAME = MODEL_NAMES[0]
16
 
17
  model = AutoModelForImageClassification.from_pretrained(
18
  MODEL_NAME,
 
19
  )
20
  processor = AutoImageProcessor.from_pretrained(MODEL_NAME, trust_remote_code=True)
21
 
@@ -90,7 +91,6 @@ def animagine_prompt(rating: list[str], character: list[str], general: list[str]
90
 
91
 
92
  @spaces.GPU
93
- @torch.no_grad()
94
  def predict_tags(
95
  image: Image.Image, general_threshold: float = 0.3, character_threshold: float = 0.8
96
  ):
 
16
 
17
  model = AutoModelForImageClassification.from_pretrained(
18
  MODEL_NAME,
19
+ device="cuda:0" if torch.cuda.is_available() else "cpu",
20
  )
21
  processor = AutoImageProcessor.from_pretrained(MODEL_NAME, trust_remote_code=True)
22
 
 
91
 
92
 
93
  @spaces.GPU
 
94
  def predict_tags(
95
  image: Image.Image, general_threshold: float = 0.3, character_threshold: float = 0.8
96
  ):