Skip to content

Commit 508ce15

Browse files
committed
change branch to main
Signed-off-by: Deyu Huang <[email protected]>
1 parent ee75f4a commit 508ce15

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/ISSUE_TEMPLATE/bug-performance-issue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ about: Use this template for reporting a bug or a performance issue.
77
**Dubugging advice**
88
[delete this section if it doesn't solve your issue]
99
- Add a `--opset` flag with the highest possible opset you can use. Some ops only convert in higher opsets.
10-
- Try installing the latest tf2onnx from master. Some bug fixes might not have been released to PyPI. Run `pip uninstall tf2onnx` and `pip install git+https://github.com/onnx/tensorflow-onnx`
10+
- Try installing the latest tf2onnx from main branch. Some bug fixes might not have been released to PyPI. Run `pip uninstall tf2onnx` and `pip install git+https://github.com/onnx/tensorflow-onnx`
1111
- If using a saved model, use the Tensorflow `saved_model_cli` to determine the correct `--tag` and `--signature_def` flags to use. If the signature you need is not listed, use the `--concrete_function` flag to index into the model's defined functions.
1212
- If your model was made in tf1.x, try running tf2onnx in a venv with tensorflow 1.x installed. tf2.x should be able to read tf1 models, but sometimes there are bugs.
1313

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ We're always looking for your help to fix bugs and improve the product. Create a
1111
4. Make and checkin your changes along with unit tests
1212
5. git commit your changes
1313
6. git push origin HEAD
14-
7. To request merge into master send a pull request from the web ui
14+
7. To request merge into main send a pull request from the web ui
1515
https://github.com/onnx/tensorflow-onnx.
1616

1717

ci_build/azure_pipelines/onnxruntime_nightly_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,5 +107,5 @@ schedules:
107107
displayName: Daily onnxruntime nightly unittest
108108
branches:
109109
include:
110-
- master
110+
- main
111111
always: true

ci_build/azure_pipelines/pretrained_model_test-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,5 @@ schedules:
6060
displayName: pre-trained model test, full matrix
6161
branches:
6262
include:
63-
- master
63+
- main
6464
always: true

tutorials/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@
55
The following tutorials show how to convert various models to ONNX.
66

77
## Image Classifiers
8-
[efficientnet-edge](https://github.com/onnx/tensorflow-onnx/blob/master/tutorials/efficientnet-edge.ipynb)
8+
[efficientnet-edge](https://github.com/onnx/tensorflow-onnx/blob/main/tutorials/efficientnet-edge.ipynb)
99

10-
[efficientnet-lite](https://github.com/onnx/tensorflow-onnx/blob/master/tutorials/efficientnet-lite.ipynb)
10+
[efficientnet-lite](https://github.com/onnx/tensorflow-onnx/blob/main/tutorials/efficientnet-lite.ipynb)
1111

12-
[keras-resnet50](https://github.com/onnx/tensorflow-onnx/blob/master/tutorials/keras-resnet50.ipynb) - shows how to convert a keras model via python api
12+
[keras-resnet50](https://github.com/onnx/tensorflow-onnx/blob/main/tutorials/keras-resnet50.ipynb) - shows how to convert a keras model via python api
1313

1414
## Object Detectors
15-
[ssd-mobilenet](https://github.com/onnx/tensorflow-onnx/blob/master/tutorials/ConvertingSSDMobilenetToONNX.ipynb)
15+
[ssd-mobilenet](https://github.com/onnx/tensorflow-onnx/blob/main/tutorials/ConvertingSSDMobilenetToONNX.ipynb)
1616

17-
[efficientdet](https://github.com/onnx/tensorflow-onnx/blob/master/tutorials/efficientdet.ipynb)
17+
[efficientdet](https://github.com/onnx/tensorflow-onnx/blob/main/tutorials/efficientdet.ipynb)
1818

19-
[mobiledet](https://github.com/onnx/tensorflow-onnx/blob/master/tutorials/mobiledet-tflite.ipynb) - shows how to convert a tflite model
19+
[mobiledet](https://github.com/onnx/tensorflow-onnx/blob/main/tutorials/mobiledet-tflite.ipynb) - shows how to convert a tflite model
2020

2121
## Nlp
22-
[Huggingface Bert Example](https://github.com/onnx/tensorflow-onnx/blob/master/tutorials/huggingface-bert.ipynb)
22+
[Huggingface Bert Example](https://github.com/onnx/tensorflow-onnx/blob/main/tutorials/huggingface-bert.ipynb)
2323

24-
[The original Tensorflow Bert model](https://github.com/onnx/tensorflow-onnx/blob/master/tutorials/BertTutorial.ipynb) - depreciated, use huggingface
24+
[The original Tensorflow Bert model](https://github.com/onnx/tensorflow-onnx/blob/main/tutorials/BertTutorial.ipynb) - depreciated, use huggingface

0 commit comments

Comments
 (0)