Upload folder using huggingface_hub
Browse files- README.md +3 -0
- config.json +14 -0
- model.pth +3 -0
README.md
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Simple PyTorch Tabular Classifier
|
| 2 |
+
|
| 3 |
+
3-class tabular classification model.
|
config.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"SimplePyTorchTabularClassifier"
|
| 4 |
+
],
|
| 5 |
+
"model_type": "tabular_classification",
|
| 6 |
+
"framework": "pytorch",
|
| 7 |
+
"input_dim": 10,
|
| 8 |
+
"num_labels": 3,
|
| 9 |
+
"id2label": {
|
| 10 |
+
"0": "class_A",
|
| 11 |
+
"1": "class_B",
|
| 12 |
+
"2": "class_C"
|
| 13 |
+
}
|
| 14 |
+
}
|
model.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c393ee9b47526ebaae2c6b92b767f4ee10ea8b369507a944c688dc8620b4aba4
|
| 3 |
+
size 14205
|