Skip to content

Commit

Permalink
integrating pylint feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-roethig-db committed Apr 15, 2024
1 parent bb11d37 commit 5d9d012
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions transcription_tool/diarize_speakers.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
"""
Module containing the diarize_speaker function
"""

import torch
from pyannote.audio import Pipeline, Audio

Expand Down
4 changes: 4 additions & 0 deletions transcription_tool/speech2text.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
"""
Module containing the speech2text function
"""

import torch
from transformers import WhisperProcessor, WhisperForConditionalGeneration

Expand Down
4 changes: 4 additions & 0 deletions transcription_tool/transcription_tool.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
"""
Main module of transcription tool
"""

import pandas as pd

from transcription_tool.diarize_speakers import diarize_speakers
Expand Down

0 comments on commit 5d9d012

Please sign in to comment.