mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-13 18:08:13 +00:00
Fix https://github.com/microsoft/onnxruntime/issues/14017. Before: shape_value = np.asarray([0, 0, np.array([4]), np.array([8])], dtype=np.int64) raise Error in numpy 1.24. After: shape_value = np.asarray([0, 0, 4, 8)], dtype=np.int64) is good in numpy 1.24. Update test environment to use numpy 1.24.
7 lines
129 B
Text
7 lines
129 B
Text
# packages used by transformers tool test
|
|
packaging
|
|
protobuf==3.20.1
|
|
numpy==1.24.0
|
|
coloredlogs==15.0
|
|
transformers==4.24.0
|
|
psutil
|