-
Notifications
You must be signed in to change notification settings - Fork 408
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
115 additions
and
44 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,7 +67,7 @@ jobs: | |
- run: ls -lh dist/ | ||
# We do this, since failures on test.pypi aren't that bad | ||
- name: Publish to Test PyPI | ||
uses: pypa/[email protected].0 | ||
uses: pypa/[email protected].2 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.test_pypi_password }} | ||
|
@@ -94,7 +94,7 @@ jobs: | |
path: dist | ||
- run: ls -lh dist/ | ||
- name: Publish distribution 📦 to PyPI | ||
uses: pypa/[email protected].0 | ||
uses: pypa/[email protected].2 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.pypi_password }} | ||
|
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
document.addEventListener("DOMContentLoaded", function () { | ||
var script = document.createElement("script"); | ||
script.type = "module"; | ||
script.id = "runllm-widget-script" | ||
|
||
script.src = "https://widget.runllm.com"; | ||
|
||
script.setAttribute("runllm-keyboard-shortcut", "Mod+j"); // cmd-j or ctrl-j to open the widget. | ||
script.setAttribute("runllm-name", "TorchMetrics"); | ||
script.setAttribute("runllm-position", "BOTTOM_RIGHT"); | ||
script.setAttribute("runllm-assistant-id", "244"); | ||
|
||
script.async = true; | ||
document.head.appendChild(script); | ||
}); |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# NOTE: the upper bound for the package version is only set for CI stability, and it is dropped while installing this package | ||
# in case you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment | ||
|
||
pandas >1.4.0, <=2.2.2 | ||
pandas >1.4.0, <=2.2.3 | ||
netcal >1.0.0, <1.4.0 # calibration_error | ||
numpy <2.2.0 | ||
fairlearn # group_fairness |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# NOTE: the upper bound for the package version is only set for CI stability, and it is dropped while installing this package | ||
# in case you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment | ||
|
||
transformers >=4.42.3, <4.45.0 | ||
transformers >=4.42.3, <4.46.0 | ||
piq <=0.8.0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
# NOTE: the upper bound for the package version is only set for CI stability, and it is dropped while installing this package | ||
# in case you want to preserve/enforce restrictions on the latest compatible version, add "strict" as an in-line comment | ||
|
||
pandas >1.4.0, <=2.2.2 # cannot pin version due to numpy version incompatibility | ||
dython ~=0.7.6 | ||
pandas >1.4.0, <=2.2.3 # cannot pin version due to numpy version incompatibility | ||
dython ==0.7.6 ; python_version <"3.9" | ||
dython ~=0.7.8 ; python_version > "3.8" # we do not use `> =` | ||
scipy >1.0.0, <1.15.0 # cannot pin version due to some version conflicts with `oldest` CI configuration | ||
statsmodels >0.13.5, <0.15.0 |
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
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
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
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
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
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
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
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
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
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
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