Skip to content

Commit 3a33770

Browse files
committed
Merge branch 'main' into feature/tensor_stats
2 parents 2d6322b + 813128f commit 3a33770

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ exclude =
6969
# Note: pyparsing is actually needed by QKeras, but missing as dependency
7070
qkeras =
7171
pyparsing
72-
tf2onnx>=1.12.1
72+
tf2onnx>=1.16.1
7373
tensorflow==2.9.0
7474
QKeras==0.9.0
7575

tests/transformation/test_batchnorm_to_affine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
from qonnx.transformation.infer_shapes import InferShapes
4242
from qonnx.util.basic import gen_finn_dt_tensor, qonnx_make_model
4343

44-
download_url = "https://github.com/onnx/models/raw/main/vision/classification"
44+
download_url = "https://github.com/onnx/models/raw/main/validated/vision/classification"
4545
download_url += "/shufflenet/model/shufflenet-9.onnx"
4646
export_onnx_path = download_url.split("/")[-1]
4747

tests/transformation/test_qcdq_to_qonnx.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@
3939

4040
model_details = {
4141
"MobileNetv2-w8a8": {
42-
"url": ("https://github.com/onnx/models/raw/main/vision/classification/mobilenet/model/mobilenetv2-12-qdq.onnx"),
42+
"url": (
43+
"https://github.com/onnx/models/raw/main/validated/vision/classification/mobilenet/model/mobilenetv2-12-qdq.onnx"
44+
),
4345
"input_shape": (1, 3, 224, 224),
4446
"input_range": (-1, +1),
4547
"exp_q_nodes": 171,

tests/transformation/test_renaming.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def test_renaming():
7777

7878

7979
def test_rename_multi_io_tinyyolov3():
80-
download_url = "https://github.com/onnx/models/raw/main/vision/object_detection_segmentation"
80+
download_url = "https://github.com/onnx/models/raw/main/validated/vision/object_detection_segmentation"
8181
download_url += "/tiny-yolov3/model/tiny-yolov3-11.onnx"
8282
export_onnx_path = download_url.split("/")[-1]
8383
ureq.urlretrieve(download_url, export_onnx_path)

0 commit comments

Comments
 (0)