Metadata-Version: 2.3
Name: spokentxt-punctuation-restoration
Version: 0.1.0
Summary: 
Author: Jinwon Kim
Author-email: code.eric22@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: torch (>=2.1.0,<3.0.0)
Requires-Dist: transformers (>=4.49.0,<5.0.0)
Description-Content-Type: text/markdown

# Spoken text Punctuation Restoration

# Languages
English, Korean

# Model details
https://huggingface.co/whooray/koen_punctuation

# Install
```bash
pip install spokentxt-punctuation-restoration
```

# Usage
```python
from spokentxt_punctuation_restoration import PunctuationModel

model = PunctuationModel(model_name = "whooray/koen_punctuation", device = "cpu") # device = cuda:0
model("안녕하세요")
#'안녕하세요.'
model("Hello how are you")
#'Hello, how are you?'
```
