--- language: - en license: mit pipeline_tag: token-classification model-index: - name: punctual-bert-bg results: [] widget: - text: 'Човекът искащ безгрижно писане ме помоли да създам този модел.' --- # punctual-bert-bg ## Usage ```python from transformers import pipeline MODEL_ID = "auhide/punctual-bert-bg" from transformers import pipeline punctuate = pipeline("token-classification", model=punctual_bert.model, tokenizer=punctual_bert.tokenizer) punctuate("Човекът искащ безгрижно писане ме помоли да създам този модел.") ``` ```bash [{'entity': 'B-CMA', 'score': 0.95041466, 'index': 1, 'word': '▁Човекът', 'start': 0, 'end': 7}, {'entity': 'I-CMA', 'score': 0.95229745, 'index': 2, 'word': '▁иска', 'start': 7, 'end': 12}, {'entity': 'B-CMA', 'score': 0.95945585, 'index': 5, 'word': '▁писане', 'start': 23, 'end': 30}, {'entity': 'I-CMA', 'score': 0.90768945, 'index': 6, 'word': '▁ме', 'start': 30, 'end': 33}] ```