Fix token labels (#4)
Browse files- Fix config to use the correct B/I/O label names (9fb26d15f1bed09a085123d793eb2480f16b09cd)
Co-authored-by: Ian Roberts <ianroberts@users.noreply.huggingface.co>
- config.json +18 -18
- onnx/config.json +18 -18
    	
        config.json
    CHANGED
    
    | @@ -9,27 +9,27 @@ | |
| 9 | 
             
              "dropout": 0.1,
         | 
| 10 | 
             
              "hidden_dim": 3072,
         | 
| 11 | 
             
              "id2label": {
         | 
| 12 | 
            -
                "0": " | 
| 13 | 
            -
                "1": " | 
| 14 | 
            -
                "2": " | 
| 15 | 
            -
                "3": " | 
| 16 | 
            -
                "4": " | 
| 17 | 
            -
                "5": " | 
| 18 | 
            -
                "6": " | 
| 19 | 
            -
                "7": " | 
| 20 | 
            -
                "8": " | 
| 21 | 
             
              },
         | 
| 22 | 
             
              "initializer_range": 0.02,
         | 
| 23 | 
             
              "label2id": {
         | 
| 24 | 
            -
                " | 
| 25 | 
            -
                " | 
| 26 | 
            -
                " | 
| 27 | 
            -
                " | 
| 28 | 
            -
                " | 
| 29 | 
            -
                " | 
| 30 | 
            -
                " | 
| 31 | 
            -
                " | 
| 32 | 
            -
                " | 
| 33 | 
             
              },
         | 
| 34 | 
             
              "max_position_embeddings": 512,
         | 
| 35 | 
             
              "model_type": "distilbert",
         | 
|  | |
| 9 | 
             
              "dropout": 0.1,
         | 
| 10 | 
             
              "hidden_dim": 3072,
         | 
| 11 | 
             
              "id2label": {
         | 
| 12 | 
            +
                "0": "O",
         | 
| 13 | 
            +
                "1": "B-PER",
         | 
| 14 | 
            +
                "2": "I-PER",
         | 
| 15 | 
            +
                "3": "B-ORG",
         | 
| 16 | 
            +
                "4": "I-ORG",
         | 
| 17 | 
            +
                "5": "B-LOC",
         | 
| 18 | 
            +
                "6": "I-LOC",
         | 
| 19 | 
            +
                "7": "B-MISC",
         | 
| 20 | 
            +
                "8": "I-MISC"
         | 
| 21 | 
             
              },
         | 
| 22 | 
             
              "initializer_range": 0.02,
         | 
| 23 | 
             
              "label2id": {
         | 
| 24 | 
            +
                "O": 0,
         | 
| 25 | 
            +
                "B-PER": 1,
         | 
| 26 | 
            +
                "I-PER": 2,
         | 
| 27 | 
            +
                "B-ORG": 3,
         | 
| 28 | 
            +
                "I-ORG": 4,
         | 
| 29 | 
            +
                "B-LOC": 5,
         | 
| 30 | 
            +
                "I-LOC": 6,
         | 
| 31 | 
            +
                "B-MISC": 7,
         | 
| 32 | 
            +
                "I-MISC": 8
         | 
| 33 | 
             
              },
         | 
| 34 | 
             
              "max_position_embeddings": 512,
         | 
| 35 | 
             
              "model_type": "distilbert",
         | 
    	
        onnx/config.json
    CHANGED
    
    | @@ -9,27 +9,27 @@ | |
| 9 | 
             
              "dropout": 0.1,
         | 
| 10 | 
             
              "hidden_dim": 3072,
         | 
| 11 | 
             
              "id2label": {
         | 
| 12 | 
            -
                "0": " | 
| 13 | 
            -
                "1": " | 
| 14 | 
            -
                "2": " | 
| 15 | 
            -
                "3": " | 
| 16 | 
            -
                "4": " | 
| 17 | 
            -
                "5": " | 
| 18 | 
            -
                "6": " | 
| 19 | 
            -
                "7": " | 
| 20 | 
            -
                "8": " | 
| 21 | 
             
              },
         | 
| 22 | 
             
              "initializer_range": 0.02,
         | 
| 23 | 
             
              "label2id": {
         | 
| 24 | 
            -
                " | 
| 25 | 
            -
                " | 
| 26 | 
            -
                " | 
| 27 | 
            -
                " | 
| 28 | 
            -
                " | 
| 29 | 
            -
                " | 
| 30 | 
            -
                " | 
| 31 | 
            -
                " | 
| 32 | 
            -
                " | 
| 33 | 
             
              },
         | 
| 34 | 
             
              "max_position_embeddings": 512,
         | 
| 35 | 
             
              "model_type": "distilbert",
         | 
|  | |
| 9 | 
             
              "dropout": 0.1,
         | 
| 10 | 
             
              "hidden_dim": 3072,
         | 
| 11 | 
             
              "id2label": {
         | 
| 12 | 
            +
                "0": "O",
         | 
| 13 | 
            +
                "1": "B-PER",
         | 
| 14 | 
            +
                "2": "I-PER",
         | 
| 15 | 
            +
                "3": "B-ORG",
         | 
| 16 | 
            +
                "4": "I-ORG",
         | 
| 17 | 
            +
                "5": "B-LOC",
         | 
| 18 | 
            +
                "6": "I-LOC",
         | 
| 19 | 
            +
                "7": "B-MISC",
         | 
| 20 | 
            +
                "8": "I-MISC"
         | 
| 21 | 
             
              },
         | 
| 22 | 
             
              "initializer_range": 0.02,
         | 
| 23 | 
             
              "label2id": {
         | 
| 24 | 
            +
                "O": 0,
         | 
| 25 | 
            +
                "B-PER": 1,
         | 
| 26 | 
            +
                "I-PER": 2,
         | 
| 27 | 
            +
                "B-ORG": 3,
         | 
| 28 | 
            +
                "I-ORG": 4,
         | 
| 29 | 
            +
                "B-LOC": 5,
         | 
| 30 | 
            +
                "I-LOC": 6,
         | 
| 31 | 
            +
                "B-MISC": 7,
         | 
| 32 | 
            +
                "I-MISC": 8
         | 
| 33 | 
             
              },
         | 
| 34 | 
             
              "max_position_embeddings": 512,
         | 
| 35 | 
             
              "model_type": "distilbert",
         | 
