Skip to content

Commit

Permalink
change branch to main
Browse files Browse the repository at this point in the history
Signed-off-by: Deyu Huang <deyhuang@microsoft.com>
  • Loading branch information
hwangdeyu committed Mar 16, 2022
1 parent ee75f4a commit 508ce15
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug-performance-issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ about: Use this template for reporting a bug or a performance issue.
**Dubugging advice**
[delete this section if it doesn't solve your issue]
- Add a `--opset` flag with the highest possible opset you can use. Some ops only convert in higher opsets.
- 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`
- 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`
- 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.
- 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.

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ We're always looking for your help to fix bugs and improve the product. Create a
4. Make and checkin your changes along with unit tests
5. git commit your changes
6. git push origin HEAD
7. To request merge into master send a pull request from the web ui
7. To request merge into main send a pull request from the web ui
https://github.com/onnx/tensorflow-onnx.


Expand Down
2 changes: 1 addition & 1 deletion ci_build/azure_pipelines/onnxruntime_nightly_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,5 +107,5 @@ schedules:
displayName: Daily onnxruntime nightly unittest
branches:
include:
- master
- main
always: true
2 changes: 1 addition & 1 deletion ci_build/azure_pipelines/pretrained_model_test-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ schedules:
displayName: pre-trained model test, full matrix
branches:
include:
- master
- main
always: true
16 changes: 8 additions & 8 deletions tutorials/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@
The following tutorials show how to convert various models to ONNX.

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

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

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

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

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

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

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

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

0 comments on commit 508ce15

Please sign in to comment.