super-gradients
super-gradients copied to clipboard
How can i solve this warning that appear during inference
these warnings appear during inference. How can I solve it?
Hi @Mohamed2519
You can set the environment variable CONSOLE_LOG_LEVEL
to control it.
import os
os.environ["CONSOLE_LOG_LEVEL"] = "ERROR"
from super_gradients.common.object_names import Models
from super_gradients.training import models
# Note that currently only YoloX, PPYoloE and YOLO-NAS are supported.
model = models.get(Models.YOLO_NAS_L, pretrained_weights="coco")