Spaces:
Running
Running
Update main.py
Browse files
main.py
CHANGED
@@ -300,7 +300,7 @@ def nsfw_check(item, attempts=1):
|
|
300 |
return nsfw_check(item, attempts+1)
|
301 |
|
302 |
scores = {item['label']: item['score'] for item in json_response}
|
303 |
-
error_msg = scores.get('nsfw', 0) >
|
304 |
return error_msg
|
305 |
except json.JSONDecodeError as e:
|
306 |
print(f'JSON Decoding Error: {e}')
|
@@ -316,7 +316,6 @@ def nsfw_check(item, attempts=1):
|
|
316 |
async def inference(item: Item):
|
317 |
print("Start API Inference")
|
318 |
activeModels = InferenceClient().list_deployed_models()
|
319 |
-
print(activeModels['text-to-image'])
|
320 |
base64_img = ""
|
321 |
model = item.modelID
|
322 |
print(f'Start Model {model}')
|
|
|
300 |
return nsfw_check(item, attempts+1)
|
301 |
|
302 |
scores = {item['label']: item['score'] for item in json_response}
|
303 |
+
error_msg = scores.get('nsfw', 0) > .35
|
304 |
return error_msg
|
305 |
except json.JSONDecodeError as e:
|
306 |
print(f'JSON Decoding Error: {e}')
|
|
|
316 |
async def inference(item: Item):
|
317 |
print("Start API Inference")
|
318 |
activeModels = InferenceClient().list_deployed_models()
|
|
|
319 |
base64_img = ""
|
320 |
model = item.modelID
|
321 |
print(f'Start Model {model}')
|