mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-04 23:59:56 +00:00
Deprecate opsets <12 for training. (#6027)
This commit is contained in:
parent
d95fc5e849
commit
9e26e59a37
1 changed files with 3 additions and 3 deletions
|
|
@ -194,7 +194,7 @@ class ORTTrainerOptions(object):
|
|||
},
|
||||
'onnx_opset_version': {
|
||||
'type': 'integer',
|
||||
'min' : 10,
|
||||
'min' : 12,
|
||||
'max' : 12,
|
||||
'default': 12
|
||||
},
|
||||
|
|
@ -486,7 +486,7 @@ _ORTTRAINER_OPTIONS_SCHEMA = {
|
|||
'transformer_layer_recompute': {
|
||||
'type': 'boolean',
|
||||
'default': False
|
||||
},
|
||||
},
|
||||
'number_recompute_layers': {
|
||||
'type': 'integer',
|
||||
'min': 0,
|
||||
|
|
@ -548,7 +548,7 @@ _ORTTRAINER_OPTIONS_SCHEMA = {
|
|||
},
|
||||
'onnx_opset_version': {
|
||||
'type': 'integer',
|
||||
'min' : 10,
|
||||
'min' : 12,
|
||||
'max' : 12,
|
||||
'default': 12
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue