Error Code 10: Internal Error (Could not find any implementation for node {ForeignNode[onnx::Gather_543...Transpose_3934 + Reshape_3943]}.) #103
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Remove feedback label on comment | |
| on: | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| remove_label: | |
| runs-on: ubuntu-latest | |
| if: github.event.issue.user.id == github.event.comment.user.id | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions-ecosystem/action-remove-labels@v1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| labels: "waiting for feedback" |