Integrate Whisper transcriptions with spaCy for advanced NLP tasks
Project description
spaCy Whisper
spaCy Whisper is a Python package designed to integrate Whisper transcriptions with the natural language processing (NLP) capabilities of spaCy. It allows users to process and analyze Whisper transcribed text with the powerful tools offered by spaCy, including tokenization, entity recognition, part-of-speech tagging, and more.
Features
- Word Level Processing: Assigns custom attributes such as start and end times, and probabilities to tokens based on Whisper output.
- Segment Level Processing: Processes text at a segment level where each word in a segment shares the same start and end time.
- Custom Token Extensions: Adds custom extensions like start_time, end_time, and probability to spaCy's Token objects.
- Custom Span Extensions: Adds start_time and end_time extensions to Span objects (such as entities and sentences).
- Custom Document Extensions: Adds a timestamp_doc extension to Doc objects, representing the document with timestamps.
Installation
spaCy Whisper can be installed via pip:
pip install spacy-whisper
Usage
from spacy_whisper import SpacyWhisper
import json
# Load a Whisper Output:
with open("whisper_output.json", "r", encoding="utf-8") as f:
whisper_output = json.load(f)
# Initialize SpacyWhisper
sw = SpacyWhisper(lang="en", model="en_core_web_sm", segments_key="segments", word_level=True)
doc = sw.create_doc(whisper_output)
# Access custom attributes
for token in doc:
print(token.text, token._.start_time, token._.end_time, token._.probability)
Expected Output
[00:00:00.000] One of the most useful things you can learn as an intermediate Python student is comprehension.
[00:00:04.720] List comprehension looks something like this.
[00:00:07.000] Imagine we had a list of names, Tom, Cat, and Bob.
Identify Entity Timing
for ent in doc.ents:
if ent.label_ == "PERSON":
print(ent, ent.label_, ent._.start_time, ent._.end_time)
Expected Output
Tom PERSON 8.4 8.66
Bob PERSON 9.24 9.54
Tom PERSON 24.64 24.94
Bob PERSON 24.94 25.2
N. PERSON 50.94 51.82
Find when Sentences Start and End
for sent in doc.sents:
print(sent.text, sent._.start_time, sent._.end_time)
Expected Output
One of the most useful things you can learn as an intermediate Python student is comprehension. 0.0 4.04
List comprehension looks something like this. 4.72 6.68
Imagine we had a list of names, Tom, Cat, and Bob. 7.0 9.54
...
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
spacy-whisper-0.0.1.tar.gz
(4.9 kB
view details)
Built Distribution
File details
Details for the file spacy-whisper-0.0.1.tar.gz
.
File metadata
- Download URL: spacy-whisper-0.0.1.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 709d12a05363bb8f94bf858b19960a407c9e9989e4766a9c660667e877a35cd5 |
|
MD5 | 6c04f63535b2e2447d827603c2450301 |
|
BLAKE2b-256 | 5451951e29094b54621b92023add954ffcccb5355b2258b261cd56371a466d71 |
File details
Details for the file spacy_whisper-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: spacy_whisper-0.0.1-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38660cfe0629c3f24ea0abd5f39be5dc7502fa929bd4669788db97c8a01243d2 |
|
MD5 | 3ab135205ef217f53e0a0fb20d120422 |
|
BLAKE2b-256 | 215990abf314eaad828aa6ba9813f24bdd541f5e88740c0e1c84b8e83c765e23 |