Metadata-Version: 2.1
Name: ina-segmenter-modified
Version: 1.0.6
Summary: Modified version of Ina Speech Segmenter
Home-page: https://github.com/youquzhiji/voice-cnn
Author: Azalea Gui
Author-email: hykilpikonna@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# ina-segmenter-modified

Credit To: https://github.com/ina-foss/inaSpeechSegmenter

## Important Modification

We added numerical outputs for probabilities of each gender 

Modified Usage: 

```py
seg = Segmenter()
data = seg(file_path)
df = pandas.DataFrame(data, columns=['Prediction', 'Start', 'End', 'Confidence'])
print(df)
```

Output Format: `list[ResultFrame(prediction, start_time_seconds, end_time_seconds, confidence or probability)]`



