remove print
Browse files
app.py
CHANGED
@@ -22,7 +22,6 @@ def process_parameters(probs, audio_length_samples, threshold, min_speech_durati
|
|
22 |
speech_pad_ms=speech_pad_ms,
|
23 |
return_seconds=True,
|
24 |
rounding=3)
|
25 |
-
print(timestamps)
|
26 |
df = pd.DataFrame(timestamps)
|
27 |
df["note"] = ""
|
28 |
df.to_csv("timestamps.txt", sep = '\t', header=False, index=False)
|
|
|
22 |
speech_pad_ms=speech_pad_ms,
|
23 |
return_seconds=True,
|
24 |
rounding=3)
|
|
|
25 |
df = pd.DataFrame(timestamps)
|
26 |
df["note"] = ""
|
27 |
df.to_csv("timestamps.txt", sep = '\t', header=False, index=False)
|