Only using 15% of gpu for video's is this normal ? #315
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Probably no. I recommend you to check your training parameters
I'm using the base training parameters.
Its uses exactly 1 gb of vram every time I run the script.
could you offer any suggestions of what I need to adjust to utilise the full gpu ?
And is it normal that the CPU AMD Ryzen 5 2600 is running at 50% and using 12 gig of ram ?
I found this in ONNX was wondering if this is the problem ?
`import onnxruntime as ort
model_path = ''
providers = [
('CUDAExecutionProvider', {
'device_id': 0,
'arena_extend_strategy': 'kNextPowerOfTwo',
'gpu_mem_limit': 2 * 1024 * 1024 * 1024,
'cudnn_conv_algo_search': 'EXHAUSTIVE',
'do_copy_in_default_stream': True,
}),
'CPUExecutionProvider',
]
session = ort.InferenceSession(model_path, providers=providers)`
Congratulation! I saw you had solved this issue.
how to solve ? please
I've moved on to other less frustrating things
how to solve ? please