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 ?
> 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 = '<path to model>'
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)`
> 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.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
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