Upload config.json with huggingface_hub
Browse files- config.json +33 -0
config.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "spis-gan",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"SpiSGAN"
|
| 5 |
+
],
|
| 6 |
+
"library_name": "pytorch",
|
| 7 |
+
"task": "image-to-image",
|
| 8 |
+
"image_resolutions": [
|
| 9 |
+
32,
|
| 10 |
+
64
|
| 11 |
+
],
|
| 12 |
+
"released_resolutions": [
|
| 13 |
+
32
|
| 14 |
+
],
|
| 15 |
+
"supported_datasets": [
|
| 16 |
+
"IAM",
|
| 17 |
+
"Vietnamese handwriting"
|
| 18 |
+
],
|
| 19 |
+
"checkpoint_files": {
|
| 20 |
+
"iam_32px": "data/bestIAM.pth",
|
| 21 |
+
"vietnamese_32px": "data/bestVN.pth"
|
| 22 |
+
},
|
| 23 |
+
"dataset_files": {
|
| 24 |
+
"iam_train_validation": "data/train_32.hdf5",
|
| 25 |
+
"iam_test": "data/test_32.hdf5",
|
| 26 |
+
"vietnamese_train_validation": "data/train_vn.h5",
|
| 27 |
+
"vietnamese_test": "data/test_vn.h5"
|
| 28 |
+
},
|
| 29 |
+
"resource_files": {
|
| 30 |
+
"english_lexicon": "data/english_words.txt",
|
| 31 |
+
"vietnamese_lexicon": "data/vietnamese_words.txt"
|
| 32 |
+
}
|
| 33 |
+
}
|