remove memory profiler from the proj.
Browse files- requirements.txt +1 -2
- src/diarization.py +0 -1
- src/improved_diarization.py +0 -1
requirements.txt
CHANGED
|
@@ -16,5 +16,4 @@ ffmpeg-python
|
|
| 16 |
feedparser
|
| 17 |
sherpa_onnx
|
| 18 |
huggingface_hub
|
| 19 |
-
faiss-cpu
|
| 20 |
-
memory_profiler
|
|
|
|
| 16 |
feedparser
|
| 17 |
sherpa_onnx
|
| 18 |
huggingface_hub
|
| 19 |
+
faiss-cpu
|
|
|
src/diarization.py
CHANGED
|
@@ -23,7 +23,6 @@ from utils import get_writable_model_dir
|
|
| 23 |
from utils import num_vcpus
|
| 24 |
from huggingface_hub import hf_hub_download
|
| 25 |
import shutil
|
| 26 |
-
from memory_profiler import profile
|
| 27 |
|
| 28 |
# Import the improved diarization pipeline (robust: search repo tree)
|
| 29 |
try:
|
|
|
|
| 23 |
from utils import num_vcpus
|
| 24 |
from huggingface_hub import hf_hub_download
|
| 25 |
import shutil
|
|
|
|
| 26 |
|
| 27 |
# Import the improved diarization pipeline (robust: search repo tree)
|
| 28 |
try:
|
src/improved_diarization.py
CHANGED
|
@@ -8,7 +8,6 @@ from sklearn.cluster import AgglomerativeClustering
|
|
| 8 |
from sklearn.metrics import silhouette_score
|
| 9 |
from typing import List, Dict, Tuple, Any
|
| 10 |
import logging
|
| 11 |
-
from memory_profiler import profile
|
| 12 |
|
| 13 |
logger = logging.getLogger(__name__)
|
| 14 |
|
|
|
|
| 8 |
from sklearn.metrics import silhouette_score
|
| 9 |
from typing import List, Dict, Tuple, Any
|
| 10 |
import logging
|
|
|
|
| 11 |
|
| 12 |
logger = logging.getLogger(__name__)
|
| 13 |
|