Add error on wrong shape in CosineSimilarity
metric
#1065
Workflow file for this run
This file contains 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: "Pull Request Labeler" | |
on: [pull_request_target] | |
jobs: | |
triage-prs: | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
# Uploads repository content to the runner | |
- uses: actions/checkout@v4 | |
- uses: actions/labeler@v4 | |
with: | |
# The path to the label configuration file. | |
configuration-path: .github/labeling-config.yml | |
# Whether removing labels when matching files are reverted or no longer changed by the PR | |
sync-labels: true |