onnxruntime/tools/ci_build/requirements.txt
Tianlei Wu 3b79b8eb1d
fix reshape fusion error in numpy 1.24 (#14231)
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.
2023-01-11 10:37:41 -08:00

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