Add skops config.json (enable download tracking) + inference:false; remove stray __pycache__ pyc
Browse files- README.md +1 -0
- __pycache__/predict.cpython-313.pyc +0 -0
- config.json +12 -0
README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
library_name: scikit-learn
|
|
|
|
| 4 |
tags:
|
| 5 |
- cybersecurity
|
| 6 |
- blockchain
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
library_name: scikit-learn
|
| 4 |
+
inference: false
|
| 5 |
tags:
|
| 6 |
- cybersecurity
|
| 7 |
- blockchain
|
__pycache__/predict.cpython-313.pyc
DELETED
|
Binary file (5.02 kB)
|
|
|
config.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"sklearn": {
|
| 3 |
+
"environment": [
|
| 4 |
+
"scikit-learn"
|
| 5 |
+
],
|
| 6 |
+
"model": {
|
| 7 |
+
"file": "model.joblib"
|
| 8 |
+
},
|
| 9 |
+
"model_format": "pickle",
|
| 10 |
+
"task": "tabular-classification"
|
| 11 |
+
}
|
| 12 |
+
}
|