diff --git a/README.md b/README.md index b7fde4c..6afbe82 100644 --- a/README.md +++ b/README.md @@ -47,10 +47,10 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so that typilus can access it. - uses: actions/checkout@v2 - - uses: typilus/typilus-action@master + - uses: typilus/typilus-action@v0.9 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - MODEL_PATH: path/to/model.pkl.gz # Optional: provide the path of a custom model instead of the pre-trained model. + # MODEL_PATH: path/to/model.pkl.gz # Optional: provide the path of a custom model instead of the pre-trained model. SUGGESTION_CONFIDENCE_THRESHOLD: 0.8 # Configure this to limit the confidence of suggestions on un-annotated locations. A float in [0, 1]. Default 0.8 DISAGREEMENT_CONFIDENCE_THRESHOLD: 0.95 # Configure this to limit the confidence of suggestions on annotated locations. A float in [0, 1]. Default 0.95 ```