Spaces:
Running
Running
Commit ·
68b4dbd
1
Parent(s): 95e32a1
weight, gradio version, mono input
Browse files- README.md +2 -2
- app.py +49 -78
- dataloader/delimit_dataset.py +85 -37
- weight/all.json +808 -858
- weight/all.pth +1 -1
README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
---
|
| 2 |
-
title: De-
|
| 3 |
emoji: 🎶
|
| 4 |
colorFrom: black
|
| 5 |
colorTo: white
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version:
|
| 8 |
app_file: app.py
|
| 9 |
pinned: true
|
| 10 |
---
|
|
|
|
| 1 |
---
|
| 2 |
+
title: De-Limiter Demo
|
| 3 |
emoji: 🎶
|
| 4 |
colorFrom: black
|
| 5 |
colorTo: white
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: 4.36.1
|
| 8 |
app_file: app.py
|
| 9 |
pinned: true
|
| 10 |
---
|
app.py
CHANGED
|
@@ -50,11 +50,6 @@ def parallel_mix(input, output, mix_coefficient):
|
|
| 50 |
return sr, input[1] * mix_coefficient + output[1] * (1 - mix_coefficient)
|
| 51 |
|
| 52 |
|
| 53 |
-
def int16_to_float32(wav):
|
| 54 |
-
X = wav / 32768
|
| 55 |
-
return X
|
| 56 |
-
|
| 57 |
-
|
| 58 |
def waveform_plot(input, output, prl_mix_ouptut, figsize_x=20, figsize_y=9):
|
| 59 |
sr = 44100
|
| 60 |
fig, ax = plt.subplots(
|
|
@@ -147,17 +142,12 @@ def main(input, mix_coefficient):
|
|
| 147 |
|
| 148 |
meter = pyln.Meter(44100)
|
| 149 |
|
| 150 |
-
|
|
|
|
|
|
|
| 151 |
orig_sr = copy.deepcopy(sr)
|
| 152 |
-
track_audio = track_audio.T
|
| 153 |
-
track_name = "gradio_demo"
|
| 154 |
|
| 155 |
-
|
| 156 |
-
track_audio = int16_to_float32(track_audio)
|
| 157 |
-
track_audio = librosa.resample(
|
| 158 |
-
track_audio, orig_sr=sr, target_sr=44100, res_type="soxr_vhq"
|
| 159 |
-
)
|
| 160 |
-
sr = 44100
|
| 161 |
|
| 162 |
orig_audio = track_audio.copy()
|
| 163 |
|
|
@@ -176,14 +166,10 @@ def main(input, mix_coefficient):
|
|
| 176 |
args, our_model, device, track_audio, track_name, meter, augmented_gain
|
| 177 |
)
|
| 178 |
|
| 179 |
-
|
| 180 |
-
|
| 181 |
-
estimates = estimates / max_value
|
| 182 |
-
estimates = estimates * db2linear(-0.1, eps=0.0)
|
| 183 |
args.save_output_loudnorm = meter.integrated_loudness(estimates.T)
|
| 184 |
|
| 185 |
-
if orig_sr == 44100:
|
| 186 |
-
orig_audio = int16_to_float32(orig_audio)
|
| 187 |
track_lufs = meter.integrated_loudness(orig_audio.T)
|
| 188 |
augmented_gain = args.save_output_loudnorm - track_lufs
|
| 189 |
orig_audio = orig_audio * db2linear(augmented_gain, eps=0.0)
|
|
@@ -220,7 +206,7 @@ with gr.Blocks() as demo:
|
|
| 220 |
</h1>
|
| 221 |
</div>
|
| 222 |
<p style="margin-bottom: 10px; font-size: 94%">
|
| 223 |
-
A demo for "Music De-
|
| 224 |
Upload a stereo music (tested with .wav, .mp3, .m4a) file and then press "De-limit" button to apply the De-limiter.<br>
|
| 225 |
The processing is based on 44.1kHz sample rate. Other sample rate will be automatically resampled to 44.1kHz.<br>
|
| 226 |
Since we use a CPU instead of a GPU, it may require a few seconds to minutes.<br>
|
|
@@ -233,74 +219,59 @@ with gr.Blocks() as demo:
|
|
| 233 |
</div>
|
| 234 |
"""
|
| 235 |
)
|
| 236 |
-
with gr.Row()
|
| 237 |
with gr.Column():
|
| 238 |
-
|
| 239 |
-
|
| 240 |
-
btn = gr.Button("De-limit")
|
| 241 |
with gr.Column():
|
| 242 |
-
|
| 243 |
-
|
| 244 |
-
|
| 245 |
-
|
| 246 |
-
|
| 247 |
-
|
| 248 |
-
|
| 249 |
-
|
| 250 |
-
|
| 251 |
-
|
| 252 |
-
|
| 253 |
-
|
| 254 |
-
|
| 255 |
-
|
| 256 |
-
|
| 257 |
-
|
| 258 |
-
|
| 259 |
-
maximum=1,
|
| 260 |
-
step=0.1,
|
| 261 |
-
value=0.5,
|
| 262 |
-
label="Parallel Mix Coefficient",
|
| 263 |
-
)
|
| 264 |
btn.click(
|
| 265 |
-
main,
|
| 266 |
inputs=[input_audio, slider],
|
| 267 |
outputs=[output_audio, loud_norm_input, output_audio_parallel],
|
| 268 |
)
|
| 269 |
slider.release(
|
| 270 |
-
parallel_mix,
|
| 271 |
inputs=[loud_norm_input, output_audio, slider],
|
| 272 |
outputs=output_audio_parallel,
|
| 273 |
)
|
| 274 |
-
with gr.Row()
|
| 275 |
with gr.Column():
|
| 276 |
-
|
| 277 |
-
|
| 278 |
-
|
| 279 |
-
|
| 280 |
-
|
| 281 |
-
|
| 282 |
-
|
| 283 |
-
|
| 284 |
-
|
| 285 |
-
|
| 286 |
-
|
| 287 |
-
|
| 288 |
-
|
| 289 |
-
|
| 290 |
-
|
| 291 |
-
|
| 292 |
-
|
| 293 |
-
|
| 294 |
-
|
| 295 |
-
inputs=[
|
| 296 |
-
loud_norm_input,
|
| 297 |
-
output_audio,
|
| 298 |
-
output_audio_parallel,
|
| 299 |
-
slider_plot_x,
|
| 300 |
-
slider_plot_y,
|
| 301 |
-
],
|
| 302 |
-
outputs=plot,
|
| 303 |
-
)
|
| 304 |
|
| 305 |
if __name__ == "__main__":
|
| 306 |
demo.launch()
|
|
|
|
| 50 |
return sr, input[1] * mix_coefficient + output[1] * (1 - mix_coefficient)
|
| 51 |
|
| 52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 53 |
def waveform_plot(input, output, prl_mix_ouptut, figsize_x=20, figsize_y=9):
|
| 54 |
sr = 44100
|
| 55 |
fig, ax = plt.subplots(
|
|
|
|
| 142 |
|
| 143 |
meter = pyln.Meter(44100)
|
| 144 |
|
| 145 |
+
track_audio, sr = librosa.load(input, sr=44100, mono=False)
|
| 146 |
+
if len(track_audio.shape) == 1: # mono
|
| 147 |
+
track_audio = np.stack([track_audio, track_audio], axis=0)
|
| 148 |
orig_sr = copy.deepcopy(sr)
|
|
|
|
|
|
|
| 149 |
|
| 150 |
+
track_name = "gradio_demo"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 151 |
|
| 152 |
orig_audio = track_audio.copy()
|
| 153 |
|
|
|
|
| 166 |
args, our_model, device, track_audio, track_name, meter, augmented_gain
|
| 167 |
)
|
| 168 |
|
| 169 |
+
if np.abs(estimates).max() > 1.0:
|
| 170 |
+
estimates = estimates / np.abs(estimates).max()
|
|
|
|
|
|
|
| 171 |
args.save_output_loudnorm = meter.integrated_loudness(estimates.T)
|
| 172 |
|
|
|
|
|
|
|
| 173 |
track_lufs = meter.integrated_loudness(orig_audio.T)
|
| 174 |
augmented_gain = args.save_output_loudnorm - track_lufs
|
| 175 |
orig_audio = orig_audio * db2linear(augmented_gain, eps=0.0)
|
|
|
|
| 206 |
</h1>
|
| 207 |
</div>
|
| 208 |
<p style="margin-bottom: 10px; font-size: 94%">
|
| 209 |
+
A demo for "Music De-Limiter via Sample-wise Gain Inversion" to appear in WASPAA 2023.<br>
|
| 210 |
Upload a stereo music (tested with .wav, .mp3, .m4a) file and then press "De-limit" button to apply the De-limiter.<br>
|
| 211 |
The processing is based on 44.1kHz sample rate. Other sample rate will be automatically resampled to 44.1kHz.<br>
|
| 212 |
Since we use a CPU instead of a GPU, it may require a few seconds to minutes.<br>
|
|
|
|
| 219 |
</div>
|
| 220 |
"""
|
| 221 |
)
|
| 222 |
+
with gr.Row():
|
| 223 |
with gr.Column():
|
| 224 |
+
input_audio = gr.Audio(type="filepath", label="De-limiter Input")
|
| 225 |
+
btn = gr.Button("De-Limit")
|
|
|
|
| 226 |
with gr.Column():
|
| 227 |
+
loud_norm_input = gr.Audio(
|
| 228 |
+
label="Loudness Normalized Input (-14LUFS)", show_download_button=True
|
| 229 |
+
)
|
| 230 |
+
output_audio = gr.Audio(
|
| 231 |
+
label="De-limiter Output", show_download_button=True
|
| 232 |
+
)
|
| 233 |
+
output_audio_parallel = gr.Audio(
|
| 234 |
+
label="Parallel Mix of the Input and its De-limiter Output",
|
| 235 |
+
show_download_button=True,
|
| 236 |
+
)
|
| 237 |
+
slider = gr.Slider(
|
| 238 |
+
minimum=0,
|
| 239 |
+
maximum=1,
|
| 240 |
+
step=0.1,
|
| 241 |
+
value=0.5,
|
| 242 |
+
label="Parallel Mix Coefficient",
|
| 243 |
+
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 244 |
btn.click(
|
| 245 |
+
fn=main,
|
| 246 |
inputs=[input_audio, slider],
|
| 247 |
outputs=[output_audio, loud_norm_input, output_audio_parallel],
|
| 248 |
)
|
| 249 |
slider.release(
|
| 250 |
+
fn=parallel_mix,
|
| 251 |
inputs=[loud_norm_input, output_audio, slider],
|
| 252 |
outputs=output_audio_parallel,
|
| 253 |
)
|
| 254 |
+
with gr.Row():
|
| 255 |
with gr.Column():
|
| 256 |
+
plot = gr.Plot(label="Plots")
|
| 257 |
+
btn2 = gr.Button("Show Plots")
|
| 258 |
+
slider_plot_x = gr.Slider(
|
| 259 |
+
minimum=1, maximum=100, step=1, value=20, label="Plot X-axis size"
|
| 260 |
+
)
|
| 261 |
+
slider_plot_y = gr.Slider(
|
| 262 |
+
minimum=1, maximum=30, step=1, value=9, label="Plot Y-axis size"
|
| 263 |
+
)
|
| 264 |
+
btn2.click(
|
| 265 |
+
fn=waveform_plot,
|
| 266 |
+
inputs=[
|
| 267 |
+
loud_norm_input,
|
| 268 |
+
output_audio,
|
| 269 |
+
output_audio_parallel,
|
| 270 |
+
slider_plot_x,
|
| 271 |
+
slider_plot_y,
|
| 272 |
+
],
|
| 273 |
+
outputs=plot,
|
| 274 |
+
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 275 |
|
| 276 |
if __name__ == "__main__":
|
| 277 |
demo.launch()
|
dataloader/delimit_dataset.py
CHANGED
|
@@ -15,11 +15,13 @@ from .dataset import (
|
|
| 15 |
MusdbTrainDataset,
|
| 16 |
MusdbValidDataset,
|
| 17 |
apply_limitaug,
|
|
|
|
| 18 |
)
|
| 19 |
from utils import (
|
| 20 |
load_wav_arbitrary_position_stereo,
|
| 21 |
load_wav_specific_position_stereo,
|
| 22 |
db2linear,
|
|
|
|
| 23 |
)
|
| 24 |
|
| 25 |
|
|
@@ -213,8 +215,9 @@ class DelimitTrainDataset(MusdbTrainDataset):
|
|
| 213 |
# apply linear mix over source index=0
|
| 214 |
# and here, linear mixture is a target unlike in MusdbTrainDataset
|
| 215 |
mixture = stems.sum(0)
|
|
|
|
| 216 |
mixture_limited, mixture_loudnorm = self.get_limitaug_mixture(mixture)
|
| 217 |
-
# We will give mixture_limited as an input and mixture_loudnorm as a target to the model.
|
| 218 |
|
| 219 |
mixture_limited = np.clip(mixture_limited, -1.0, 1.0)
|
| 220 |
mixture_limited = torch.as_tensor(mixture_limited, dtype=torch.float32)
|
|
@@ -273,10 +276,11 @@ class OzoneTrainDataset(DelimitTrainDataset):
|
|
| 273 |
self.ozone_root = ozone_root
|
| 274 |
self.use_fixed = use_fixed
|
| 275 |
self.list_train_fixed = glob.glob(f"{self.ozone_root}/ozone_train_fixed/*.wav")
|
| 276 |
-
self.list_train_random = glob.glob(
|
| 277 |
-
|
| 278 |
-
)
|
| 279 |
-
self.dict_train_random = {}
|
|
|
|
| 280 |
|
| 281 |
# Load information of pre-generated random training examples
|
| 282 |
list_csv_files = glob.glob(f"{self.ozone_root}/ozone_train_random_*.csv")
|
|
@@ -286,34 +290,66 @@ class OzoneTrainDataset(DelimitTrainDataset):
|
|
| 286 |
reader = csv.reader(f)
|
| 287 |
next(reader)
|
| 288 |
for row in reader:
|
| 289 |
-
self.
|
| 290 |
-
|
| 291 |
-
|
| 292 |
-
|
| 293 |
-
|
| 294 |
-
|
| 295 |
-
|
| 296 |
-
|
| 297 |
-
|
| 298 |
-
|
| 299 |
-
|
| 300 |
-
|
| 301 |
-
|
| 302 |
-
|
| 303 |
-
|
| 304 |
-
|
| 305 |
-
|
| 306 |
-
|
| 307 |
-
|
| 308 |
-
|
| 309 |
-
|
| 310 |
-
|
| 311 |
-
|
| 312 |
-
|
| 313 |
-
|
| 314 |
-
|
| 315 |
-
|
| 316 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 317 |
|
| 318 |
def __getitem__(self, idx):
|
| 319 |
use_fixed_prob = random.random()
|
|
@@ -341,16 +377,24 @@ class OzoneTrainDataset(DelimitTrainDataset):
|
|
| 341 |
else:
|
| 342 |
# Random examples
|
| 343 |
# Load mixture_limited (pre-generated)
|
| 344 |
-
audio_path = random.choice(self.list_train_random)
|
| 345 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 346 |
mixture_limited, sr = librosa.load(
|
| 347 |
audio_path, sr=self.sample_rate, mono=False
|
| 348 |
)
|
| 349 |
|
| 350 |
# Load mixture_unlimited (from the original musdb18, using metadata)
|
| 351 |
audio_sources = []
|
|
|
|
|
|
|
| 352 |
for source in self.sources:
|
| 353 |
-
dict_seg_info = self.dict_train_random[seg_name]
|
| 354 |
dict_seg_source_info = dict_seg_info[source]
|
| 355 |
audio_path = (
|
| 356 |
f"{self.root}/train/{dict_seg_source_info['name']}/{source}.wav"
|
|
@@ -380,6 +424,9 @@ class OzoneTrainDataset(DelimitTrainDataset):
|
|
| 380 |
|
| 381 |
return mixture_limited, mixture_loudnorm
|
| 382 |
|
|
|
|
|
|
|
|
|
|
| 383 |
|
| 384 |
class DelimitValidDataset(MusdbValidDataset):
|
| 385 |
def __init__(
|
|
@@ -387,7 +434,7 @@ class DelimitValidDataset(MusdbValidDataset):
|
|
| 387 |
target: str = "vocals",
|
| 388 |
root: str = None,
|
| 389 |
delimit_valid_root: str = None,
|
| 390 |
-
valid_target_lufs: float = -8.05, # From the Table 1 of the
|
| 391 |
target_loudnorm_lufs: float = -14.0,
|
| 392 |
delimit_valid_L_root: str = None, # This will be used when using the target as compressed (normal_L) mixture.
|
| 393 |
use_custom_limiter: bool = False,
|
|
@@ -556,6 +603,7 @@ class OzoneValidDataset(MusdbValidDataset):
|
|
| 556 |
song_name = os.path.basename(track_path)
|
| 557 |
for k, source in enumerate(self.sources):
|
| 558 |
audio_path = f"{track_path}/{source}.wav"
|
|
|
|
| 559 |
audio = librosa.load(audio_path, mono=False, sr=self.sample_rate)[0]
|
| 560 |
audio_sources.append(audio)
|
| 561 |
|
|
|
|
| 15 |
MusdbTrainDataset,
|
| 16 |
MusdbValidDataset,
|
| 17 |
apply_limitaug,
|
| 18 |
+
# apply_limitaug_loudnorm,
|
| 19 |
)
|
| 20 |
from utils import (
|
| 21 |
load_wav_arbitrary_position_stereo,
|
| 22 |
load_wav_specific_position_stereo,
|
| 23 |
db2linear,
|
| 24 |
+
str2bool,
|
| 25 |
)
|
| 26 |
|
| 27 |
|
|
|
|
| 215 |
# apply linear mix over source index=0
|
| 216 |
# and here, linear mixture is a target unlike in MusdbTrainDataset
|
| 217 |
mixture = stems.sum(0)
|
| 218 |
+
# target_lufs = self.sample_target_lufs()
|
| 219 |
mixture_limited, mixture_loudnorm = self.get_limitaug_mixture(mixture)
|
| 220 |
+
# # We will give mixture_limited as an input and mixture_loudnorm as a target to the model.
|
| 221 |
|
| 222 |
mixture_limited = np.clip(mixture_limited, -1.0, 1.0)
|
| 223 |
mixture_limited = torch.as_tensor(mixture_limited, dtype=torch.float32)
|
|
|
|
| 276 |
self.ozone_root = ozone_root
|
| 277 |
self.use_fixed = use_fixed
|
| 278 |
self.list_train_fixed = glob.glob(f"{self.ozone_root}/ozone_train_fixed/*.wav")
|
| 279 |
+
# self.list_train_random = glob.glob(
|
| 280 |
+
# f"{self.ozone_root}/ozone_train_random/*.wav"
|
| 281 |
+
# )
|
| 282 |
+
# self.dict_train_random = {}
|
| 283 |
+
self.list_dict_train_random = []
|
| 284 |
|
| 285 |
# Load information of pre-generated random training examples
|
| 286 |
list_csv_files = glob.glob(f"{self.ozone_root}/ozone_train_random_*.csv")
|
|
|
|
| 290 |
reader = csv.reader(f)
|
| 291 |
next(reader)
|
| 292 |
for row in reader:
|
| 293 |
+
self.list_dict_train_random.append(
|
| 294 |
+
{
|
| 295 |
+
row[0]: {
|
| 296 |
+
"max_threshold": float(row[1]),
|
| 297 |
+
"max_character": float(row[2]),
|
| 298 |
+
"vocals": {
|
| 299 |
+
"name": row[3],
|
| 300 |
+
"start_sec": float(row[4]),
|
| 301 |
+
"gain": float(row[5]),
|
| 302 |
+
"channelswap": str2bool(row[6]),
|
| 303 |
+
},
|
| 304 |
+
"bass": {
|
| 305 |
+
"name": row[7],
|
| 306 |
+
"start_sec": float(row[8]),
|
| 307 |
+
"gain": float(row[9]),
|
| 308 |
+
"channelswap": str2bool(row[10]),
|
| 309 |
+
},
|
| 310 |
+
"drums": {
|
| 311 |
+
"name": row[11],
|
| 312 |
+
"start_sec": float(row[12]),
|
| 313 |
+
"gain": float(row[13]),
|
| 314 |
+
"channelswap": str2bool(row[14]),
|
| 315 |
+
},
|
| 316 |
+
"other": {
|
| 317 |
+
"name": row[15],
|
| 318 |
+
"start_sec": float(row[16]),
|
| 319 |
+
"gain": float(row[17]),
|
| 320 |
+
"channelswap": str2bool(row[18]),
|
| 321 |
+
},
|
| 322 |
+
}
|
| 323 |
+
}
|
| 324 |
+
)
|
| 325 |
+
# self.dict_train_random[row[0]] = {
|
| 326 |
+
# "max_threshold": float(row[1]),
|
| 327 |
+
# "max_character": float(row[2]),
|
| 328 |
+
# "vocals": {
|
| 329 |
+
# "name": row[3],
|
| 330 |
+
# "start_sec": float(row[4]),
|
| 331 |
+
# "gain": float(row[5]),
|
| 332 |
+
# "channelswap": str2bool(row[6]),
|
| 333 |
+
# },
|
| 334 |
+
# "bass": {
|
| 335 |
+
# "name": row[7],
|
| 336 |
+
# "start_sec": float(row[8]),
|
| 337 |
+
# "gain": float(row[9]),
|
| 338 |
+
# "channelswap": str2bool(row[10]),
|
| 339 |
+
# },
|
| 340 |
+
# "drums": {
|
| 341 |
+
# "name": row[11],
|
| 342 |
+
# "start_sec": float(row[12]),
|
| 343 |
+
# "gain": float(row[13]),
|
| 344 |
+
# "channelswap": str2bool(row[14]),
|
| 345 |
+
# },
|
| 346 |
+
# "other": {
|
| 347 |
+
# "name": row[15],
|
| 348 |
+
# "start_sec": float(row[16]),
|
| 349 |
+
# "gain": float(row[17]),
|
| 350 |
+
# "channelswap": str2bool(row[18]),
|
| 351 |
+
# },
|
| 352 |
+
# }
|
| 353 |
|
| 354 |
def __getitem__(self, idx):
|
| 355 |
use_fixed_prob = random.random()
|
|
|
|
| 377 |
else:
|
| 378 |
# Random examples
|
| 379 |
# Load mixture_limited (pre-generated)
|
| 380 |
+
# audio_path = random.choice(self.list_train_random)
|
| 381 |
+
|
| 382 |
+
dict_seg = random.choice(self.list_dict_train_random)
|
| 383 |
+
seg_name = list(dict_seg.keys())[0]
|
| 384 |
+
audio_path = f"{self.ozone_root}/ozone_train_random/{seg_name}.wav"
|
| 385 |
+
dict_seg_info = dict_seg[seg_name]
|
| 386 |
+
|
| 387 |
+
# seg_name = os.path.basename(audio_path).replace(".wav", "")
|
| 388 |
mixture_limited, sr = librosa.load(
|
| 389 |
audio_path, sr=self.sample_rate, mono=False
|
| 390 |
)
|
| 391 |
|
| 392 |
# Load mixture_unlimited (from the original musdb18, using metadata)
|
| 393 |
audio_sources = []
|
| 394 |
+
# dict_seg_info = self.dict_train_random[seg_name]
|
| 395 |
+
|
| 396 |
for source in self.sources:
|
| 397 |
+
# dict_seg_info = self.dict_train_random[seg_name]
|
| 398 |
dict_seg_source_info = dict_seg_info[source]
|
| 399 |
audio_path = (
|
| 400 |
f"{self.root}/train/{dict_seg_source_info['name']}/{source}.wav"
|
|
|
|
| 424 |
|
| 425 |
return mixture_limited, mixture_loudnorm
|
| 426 |
|
| 427 |
+
# def __len__(self):
|
| 428 |
+
# return 100
|
| 429 |
+
|
| 430 |
|
| 431 |
class DelimitValidDataset(MusdbValidDataset):
|
| 432 |
def __init__(
|
|
|
|
| 434 |
target: str = "vocals",
|
| 435 |
root: str = None,
|
| 436 |
delimit_valid_root: str = None,
|
| 437 |
+
valid_target_lufs: float = -8.05, # From the Table 1 of the paper, the average loudness of commerical music.
|
| 438 |
target_loudnorm_lufs: float = -14.0,
|
| 439 |
delimit_valid_L_root: str = None, # This will be used when using the target as compressed (normal_L) mixture.
|
| 440 |
use_custom_limiter: bool = False,
|
|
|
|
| 603 |
song_name = os.path.basename(track_path)
|
| 604 |
for k, source in enumerate(self.sources):
|
| 605 |
audio_path = f"{track_path}/{source}.wav"
|
| 606 |
+
# audio = utils.load_wav_stereo(audio_path, self.sample_rate)
|
| 607 |
audio = librosa.load(audio_path, mono=False, sr=self.sample_rate)[0]
|
| 608 |
audio_sources.append(audio)
|
| 609 |
|
weight/all.json
CHANGED
|
@@ -1,21 +1,5 @@
|
|
| 1 |
{
|
| 2 |
"args": {
|
| 3 |
-
"classifier_params": {
|
| 4 |
-
"chosen_source_mean": 0.7,
|
| 5 |
-
"chosen_source_std": 0.15,
|
| 6 |
-
"classifier_activation": "softmax",
|
| 7 |
-
"classifier_n_classes": 4,
|
| 8 |
-
"classifier_n_srcs": 4,
|
| 9 |
-
"freeze_when_mixit": true,
|
| 10 |
-
"melspec_power": 2.0,
|
| 11 |
-
"model_name": "hrnet_w18_small",
|
| 12 |
-
"n_mels": 128,
|
| 13 |
-
"other_source_mean": 0.3,
|
| 14 |
-
"other_source_std": 0.15,
|
| 15 |
-
"pretrained_model": false,
|
| 16 |
-
"use_one_source_prob": 0.2,
|
| 17 |
-
"use_stereo": true
|
| 18 |
-
},
|
| 19 |
"conv_tasnet_params": {
|
| 20 |
"bn_chan": 128,
|
| 21 |
"decoder_activation": "sigmoid",
|
|
@@ -26,6 +10,7 @@
|
|
| 26 |
"n_blocks": 5,
|
| 27 |
"n_filters": 512,
|
| 28 |
"n_repeats": 2,
|
|
|
|
| 29 |
"skip_chan": 128,
|
| 30 |
"stride": 64
|
| 31 |
},
|
|
@@ -54,12 +39,12 @@
|
|
| 54 |
"continual_train": false,
|
| 55 |
"delimit_valid_L_root": null,
|
| 56 |
"delimit_valid_root": null,
|
| 57 |
-
"exp_name": "
|
| 58 |
-
"output_directory": "/
|
| 59 |
-
"ozone_root": "/
|
| 60 |
"pretrained_classifier": null,
|
| 61 |
"resume": null,
|
| 62 |
-
"root": "/
|
| 63 |
},
|
| 64 |
"gpu": 0,
|
| 65 |
"hyperparams": {
|
|
@@ -75,24 +60,6 @@
|
|
| 75 |
"patience": 50,
|
| 76 |
"weight_decay": 0.01
|
| 77 |
},
|
| 78 |
-
"img_check": "/data2/personal/jeon/delimit/results/img_check/convtasnet_35",
|
| 79 |
-
"invest_unet_params": {
|
| 80 |
-
"bn_factor": 16,
|
| 81 |
-
"f_down_layers": null,
|
| 82 |
-
"first_conv_activation": "relu",
|
| 83 |
-
"input_channels": 4,
|
| 84 |
-
"internal_channels": 24,
|
| 85 |
-
"kernel_size_f": 3,
|
| 86 |
-
"kernel_size_t": 3,
|
| 87 |
-
"last_activation": "identity",
|
| 88 |
-
"min_bn_units": 16,
|
| 89 |
-
"n_blocks": 7,
|
| 90 |
-
"n_internal_layers": 5,
|
| 91 |
-
"t_down_layers": null,
|
| 92 |
-
"tfc_tdf_activation": "relu",
|
| 93 |
-
"tfc_tdf_bias": true,
|
| 94 |
-
"tif_init_mode": null
|
| 95 |
-
},
|
| 96 |
"model_loss_params": {
|
| 97 |
"architecture": "conv_tasnet_mask_on_output",
|
| 98 |
"efficient_mixit_threshold": null,
|
|
@@ -110,7 +77,7 @@
|
|
| 110 |
]
|
| 111 |
},
|
| 112 |
"ngpus_per_node": 1,
|
| 113 |
-
"output": "/
|
| 114 |
"resume": {},
|
| 115 |
"sample_rate": {},
|
| 116 |
"sys_params": {
|
|
@@ -126,832 +93,815 @@
|
|
| 126 |
"dataset": "delimit",
|
| 127 |
"target": "all",
|
| 128 |
"train": true
|
| 129 |
-
},
|
| 130 |
-
"umx_params": {
|
| 131 |
-
"activation": "relu",
|
| 132 |
-
"dropout_rate": 0.05,
|
| 133 |
-
"hidden_size": 512,
|
| 134 |
-
"instead_tanh_activation": "tanh",
|
| 135 |
-
"lstm_dropout_rate": 0.4,
|
| 136 |
-
"nb_layers": 3,
|
| 137 |
-
"normalization": "bn",
|
| 138 |
-
"umx_get_statistics": false
|
| 139 |
-
},
|
| 140 |
-
"wandb_params": {
|
| 141 |
-
"entity": "vinyne",
|
| 142 |
-
"project": "delimit",
|
| 143 |
-
"rerun_id": null,
|
| 144 |
-
"sweep": false,
|
| 145 |
-
"use_wandb": true
|
| 146 |
}
|
| 147 |
},
|
| 148 |
-
"best_epoch":
|
| 149 |
-
"best_loss": -14.
|
| 150 |
"epochs_trained": 200,
|
| 151 |
-
"num_bad_epochs":
|
| 152 |
"train_loss_history": [
|
| 153 |
-
-
|
| 154 |
-
-
|
| 155 |
-
-
|
| 156 |
-
-
|
| 157 |
-
-
|
| 158 |
-
-
|
| 159 |
-
-
|
| 160 |
-
-
|
| 161 |
-
-
|
| 162 |
-
-
|
| 163 |
-
-
|
| 164 |
-
-
|
| 165 |
-
-
|
| 166 |
-
-
|
| 167 |
-
-
|
| 168 |
-
-
|
| 169 |
-
-
|
| 170 |
-
-
|
| 171 |
-
-
|
| 172 |
-
-
|
| 173 |
-
-
|
| 174 |
-
-
|
| 175 |
-
-
|
| 176 |
-
-
|
| 177 |
-
-
|
| 178 |
-
-
|
| 179 |
-
-
|
| 180 |
-
-
|
| 181 |
-
-
|
| 182 |
-
-
|
| 183 |
-
-
|
| 184 |
-
-
|
| 185 |
-
-
|
| 186 |
-
-
|
| 187 |
-
-
|
| 188 |
-
-
|
| 189 |
-
-
|
| 190 |
-
-
|
| 191 |
-
-
|
| 192 |
-
-
|
| 193 |
-
-
|
| 194 |
-
-
|
| 195 |
-
-
|
| 196 |
-
-
|
| 197 |
-
-
|
| 198 |
-
-
|
| 199 |
-
-
|
| 200 |
-
-
|
| 201 |
-
-
|
| 202 |
-
-
|
| 203 |
-
-
|
| 204 |
-
-
|
| 205 |
-
-
|
| 206 |
-
-
|
| 207 |
-
-
|
| 208 |
-
-
|
| 209 |
-
-
|
| 210 |
-
-
|
| 211 |
-
-
|
| 212 |
-
-
|
| 213 |
-
-
|
| 214 |
-
-
|
| 215 |
-
-
|
| 216 |
-
-
|
| 217 |
-
-
|
| 218 |
-
-
|
| 219 |
-
-
|
| 220 |
-
-
|
| 221 |
-
-
|
| 222 |
-
-
|
| 223 |
-
-
|
| 224 |
-
-
|
| 225 |
-
-
|
| 226 |
-
-
|
| 227 |
-
-
|
| 228 |
-
-
|
| 229 |
-
-
|
| 230 |
-
-
|
| 231 |
-
-
|
| 232 |
-
-
|
| 233 |
-
-
|
| 234 |
-
-
|
| 235 |
-
-
|
| 236 |
-
-
|
| 237 |
-
-
|
| 238 |
-
-
|
| 239 |
-
-
|
| 240 |
-
-
|
| 241 |
-
-
|
| 242 |
-
-
|
| 243 |
-
-
|
| 244 |
-
-
|
| 245 |
-
-
|
| 246 |
-
-
|
| 247 |
-
-
|
| 248 |
-
-
|
| 249 |
-
-
|
| 250 |
-
-
|
| 251 |
-
-
|
| 252 |
-
-
|
| 253 |
-
-
|
| 254 |
-
-
|
| 255 |
-
-
|
| 256 |
-
-
|
| 257 |
-
-
|
| 258 |
-
-
|
| 259 |
-
-
|
| 260 |
-
-
|
| 261 |
-
-
|
| 262 |
-
-
|
| 263 |
-
-
|
| 264 |
-
-
|
| 265 |
-
-
|
| 266 |
-
-
|
| 267 |
-
-
|
| 268 |
-
-
|
| 269 |
-
-
|
| 270 |
-
-
|
| 271 |
-
-
|
| 272 |
-
-
|
| 273 |
-
-
|
| 274 |
-
-
|
| 275 |
-
-
|
| 276 |
-
-
|
| 277 |
-
-
|
| 278 |
-
-
|
| 279 |
-
-
|
| 280 |
-
-
|
| 281 |
-
-
|
| 282 |
-
-
|
| 283 |
-
-
|
| 284 |
-
-
|
| 285 |
-
-
|
| 286 |
-
-
|
| 287 |
-
-
|
| 288 |
-
-
|
| 289 |
-
-
|
| 290 |
-
-
|
| 291 |
-
-
|
| 292 |
-
-
|
| 293 |
-
-
|
| 294 |
-
-
|
| 295 |
-
-
|
| 296 |
-
-
|
| 297 |
-
-
|
| 298 |
-
-
|
| 299 |
-
-
|
| 300 |
-
-
|
| 301 |
-
-
|
| 302 |
-
-
|
| 303 |
-
-
|
| 304 |
-
-
|
| 305 |
-
-
|
| 306 |
-
-
|
| 307 |
-
-
|
| 308 |
-
-
|
| 309 |
-
-
|
| 310 |
-
-
|
| 311 |
-
-
|
| 312 |
-
-
|
| 313 |
-
-
|
| 314 |
-
-
|
| 315 |
-
-
|
| 316 |
-
-
|
| 317 |
-
-
|
| 318 |
-
-
|
| 319 |
-
-
|
| 320 |
-
-
|
| 321 |
-
-
|
| 322 |
-
-
|
| 323 |
-
-
|
| 324 |
-
-
|
| 325 |
-
-
|
| 326 |
-
-
|
| 327 |
-
-
|
| 328 |
-
-
|
| 329 |
-
-
|
| 330 |
-
-
|
| 331 |
-
-
|
| 332 |
-
-
|
| 333 |
-
-
|
| 334 |
-
-
|
| 335 |
-
-
|
| 336 |
-
-
|
| 337 |
-
-
|
| 338 |
-
-
|
| 339 |
-
-
|
| 340 |
-
-
|
| 341 |
-
-
|
| 342 |
-
-
|
| 343 |
-
-
|
| 344 |
-
-
|
| 345 |
-
-
|
| 346 |
-
-
|
| 347 |
-
-
|
| 348 |
-
-
|
| 349 |
-
-
|
| 350 |
-
-
|
| 351 |
-
-
|
| 352 |
-
-
|
| 353 |
],
|
| 354 |
"train_time_history": [
|
| 355 |
-
|
| 356 |
-
|
| 357 |
-
|
| 358 |
-
|
| 359 |
-
|
| 360 |
-
|
| 361 |
-
|
| 362 |
-
|
| 363 |
-
|
| 364 |
-
|
| 365 |
-
|
| 366 |
-
|
| 367 |
-
|
| 368 |
-
|
| 369 |
-
|
| 370 |
-
|
| 371 |
-
|
| 372 |
-
|
| 373 |
-
|
| 374 |
-
|
| 375 |
-
|
| 376 |
-
|
| 377 |
-
|
| 378 |
-
|
| 379 |
-
|
| 380 |
-
|
| 381 |
-
|
| 382 |
-
|
| 383 |
-
|
| 384 |
-
|
| 385 |
-
|
| 386 |
-
|
| 387 |
-
|
| 388 |
-
|
| 389 |
-
|
| 390 |
-
|
| 391 |
-
|
| 392 |
-
|
| 393 |
-
|
| 394 |
-
|
| 395 |
-
|
| 396 |
-
|
| 397 |
-
|
| 398 |
-
|
| 399 |
-
|
| 400 |
-
|
| 401 |
-
|
| 402 |
-
|
| 403 |
-
|
| 404 |
-
|
| 405 |
-
|
| 406 |
-
|
| 407 |
-
|
| 408 |
-
|
| 409 |
-
|
| 410 |
-
|
| 411 |
-
|
| 412 |
-
|
| 413 |
-
|
| 414 |
-
|
| 415 |
-
|
| 416 |
-
|
| 417 |
-
|
| 418 |
-
|
| 419 |
-
|
| 420 |
-
|
| 421 |
-
|
| 422 |
-
|
| 423 |
-
|
| 424 |
-
|
| 425 |
-
|
| 426 |
-
|
| 427 |
-
|
| 428 |
-
|
| 429 |
-
|
| 430 |
-
|
| 431 |
-
|
| 432 |
-
|
| 433 |
-
|
| 434 |
-
|
| 435 |
-
|
| 436 |
-
|
| 437 |
-
|
| 438 |
-
|
| 439 |
-
|
| 440 |
-
|
| 441 |
-
|
| 442 |
-
|
| 443 |
-
|
| 444 |
-
|
| 445 |
-
|
| 446 |
-
|
| 447 |
-
|
| 448 |
-
|
| 449 |
-
|
| 450 |
-
|
| 451 |
-
|
| 452 |
-
|
| 453 |
-
|
| 454 |
-
|
| 455 |
-
|
| 456 |
-
|
| 457 |
-
|
| 458 |
-
|
| 459 |
-
|
| 460 |
-
|
| 461 |
-
|
| 462 |
-
|
| 463 |
-
|
| 464 |
-
|
| 465 |
-
|
| 466 |
-
|
| 467 |
-
|
| 468 |
-
|
| 469 |
-
|
| 470 |
-
|
| 471 |
-
|
| 472 |
-
|
| 473 |
-
|
| 474 |
-
|
| 475 |
-
|
| 476 |
-
|
| 477 |
-
|
| 478 |
-
|
| 479 |
-
|
| 480 |
-
|
| 481 |
-
|
| 482 |
-
|
| 483 |
-
|
| 484 |
-
|
| 485 |
-
|
| 486 |
-
|
| 487 |
-
|
| 488 |
-
|
| 489 |
-
|
| 490 |
-
|
| 491 |
-
|
| 492 |
-
|
| 493 |
-
|
| 494 |
-
|
| 495 |
-
|
| 496 |
-
|
| 497 |
-
|
| 498 |
-
|
| 499 |
-
|
| 500 |
-
|
| 501 |
-
|
| 502 |
-
|
| 503 |
-
|
| 504 |
-
|
| 505 |
-
|
| 506 |
-
|
| 507 |
-
|
| 508 |
-
|
| 509 |
-
|
| 510 |
-
|
| 511 |
-
|
| 512 |
-
|
| 513 |
-
|
| 514 |
-
|
| 515 |
-
|
| 516 |
-
|
| 517 |
-
|
| 518 |
-
|
| 519 |
-
|
| 520 |
-
|
| 521 |
-
|
| 522 |
-
|
| 523 |
-
|
| 524 |
-
|
| 525 |
-
|
| 526 |
-
|
| 527 |
-
|
| 528 |
-
|
| 529 |
-
|
| 530 |
-
|
| 531 |
-
|
| 532 |
-
|
| 533 |
-
|
| 534 |
-
|
| 535 |
-
|
| 536 |
-
|
| 537 |
-
|
| 538 |
-
|
| 539 |
-
|
| 540 |
-
|
| 541 |
-
|
| 542 |
-
|
| 543 |
-
|
| 544 |
-
|
| 545 |
-
|
| 546 |
-
|
| 547 |
-
|
| 548 |
-
|
| 549 |
-
|
| 550 |
-
|
| 551 |
-
|
| 552 |
-
|
| 553 |
-
|
| 554 |
-
|
| 555 |
-
|
| 556 |
-
|
| 557 |
-
|
| 558 |
-
|
| 559 |
-
|
| 560 |
-
|
| 561 |
-
|
| 562 |
-
|
| 563 |
-
|
| 564 |
-
|
| 565 |
-
|
| 566 |
-
|
| 567 |
-
|
| 568 |
-
|
| 569 |
-
|
| 570 |
-
|
| 571 |
-
|
| 572 |
-
|
| 573 |
-
|
| 574 |
-
|
| 575 |
-
|
| 576 |
-
|
| 577 |
-
|
| 578 |
-
|
| 579 |
-
|
| 580 |
-
|
| 581 |
-
|
| 582 |
-
|
| 583 |
-
|
| 584 |
-
|
| 585 |
-
|
| 586 |
-
|
| 587 |
-
|
| 588 |
-
|
| 589 |
-
|
| 590 |
-
|
| 591 |
-
|
| 592 |
-
|
| 593 |
-
|
| 594 |
-
|
| 595 |
-
|
| 596 |
-
|
| 597 |
-
|
| 598 |
-
|
| 599 |
-
|
| 600 |
-
|
| 601 |
-
|
| 602 |
-
|
| 603 |
-
|
| 604 |
-
|
| 605 |
-
|
| 606 |
-
|
| 607 |
-
|
| 608 |
-
|
| 609 |
-
|
| 610 |
-
|
| 611 |
-
|
| 612 |
-
|
| 613 |
-
|
| 614 |
-
|
| 615 |
-
|
| 616 |
-
|
| 617 |
-
|
| 618 |
-
|
| 619 |
-
|
| 620 |
-
|
| 621 |
-
|
| 622 |
-
|
| 623 |
-
|
| 624 |
-
|
| 625 |
-
|
| 626 |
-
|
| 627 |
-
|
| 628 |
-
|
| 629 |
-
|
| 630 |
-
|
| 631 |
-
|
| 632 |
-
|
| 633 |
-
|
| 634 |
-
|
| 635 |
-
|
| 636 |
-
|
| 637 |
-
|
| 638 |
-
|
| 639 |
-
|
| 640 |
-
|
| 641 |
-
|
| 642 |
-
|
| 643 |
-
|
| 644 |
-
|
| 645 |
-
|
| 646 |
-
|
| 647 |
-
|
| 648 |
-
|
| 649 |
-
|
| 650 |
-
|
| 651 |
-
|
| 652 |
-
|
| 653 |
-
|
| 654 |
-
|
| 655 |
-
|
| 656 |
-
|
| 657 |
-
|
| 658 |
-
|
| 659 |
-
|
| 660 |
-
|
| 661 |
-
|
| 662 |
-
|
| 663 |
-
|
| 664 |
-
|
| 665 |
-
|
| 666 |
-
|
| 667 |
-
|
| 668 |
-
|
| 669 |
-
|
| 670 |
-
|
| 671 |
-
|
| 672 |
-
|
| 673 |
-
|
| 674 |
-
|
| 675 |
-
|
| 676 |
-
|
| 677 |
-
|
| 678 |
-
|
| 679 |
-
|
| 680 |
-
|
| 681 |
-
|
| 682 |
-
|
| 683 |
-
|
| 684 |
-
|
| 685 |
-
|
| 686 |
-
|
| 687 |
-
|
| 688 |
-
|
| 689 |
-
|
| 690 |
-
|
| 691 |
-
|
| 692 |
-
|
| 693 |
-
|
| 694 |
-
|
| 695 |
-
|
| 696 |
-
|
| 697 |
-
|
| 698 |
-
|
| 699 |
-
|
| 700 |
-
|
| 701 |
-
|
| 702 |
-
|
| 703 |
-
|
| 704 |
-
|
| 705 |
-
|
| 706 |
-
|
| 707 |
-
|
| 708 |
-
|
| 709 |
-
|
| 710 |
-
|
| 711 |
-
|
| 712 |
-
|
| 713 |
-
|
| 714 |
-
|
| 715 |
-
|
| 716 |
-
|
| 717 |
-
|
| 718 |
-
|
| 719 |
-
|
| 720 |
-
|
| 721 |
-
|
| 722 |
-
|
| 723 |
-
|
| 724 |
-
|
| 725 |
-
|
| 726 |
-
|
| 727 |
-
|
| 728 |
-
|
| 729 |
-
|
| 730 |
-
|
| 731 |
-
|
| 732 |
-
|
| 733 |
-
|
| 734 |
-
|
| 735 |
-
|
| 736 |
-
|
| 737 |
-
|
| 738 |
-
|
| 739 |
-
|
| 740 |
-
|
| 741 |
-
|
| 742 |
-
|
| 743 |
-
|
| 744 |
-
|
| 745 |
-
|
| 746 |
-
|
| 747 |
-
|
| 748 |
-
|
| 749 |
-
|
| 750 |
-
|
| 751 |
-
|
| 752 |
-
|
| 753 |
-
|
| 754 |
],
|
| 755 |
"valid_loss_history": [
|
| 756 |
-
-12.
|
| 757 |
-
-12.
|
| 758 |
-
-12.
|
| 759 |
-
-12.
|
| 760 |
-
-12.
|
| 761 |
-
-
|
| 762 |
-
-
|
| 763 |
-
-13.
|
| 764 |
-
-13.
|
| 765 |
-
-13.
|
| 766 |
-
-13.
|
| 767 |
-
-13.
|
| 768 |
-
-13.
|
| 769 |
-
-13.
|
| 770 |
-
-13.
|
| 771 |
-
-13.
|
| 772 |
-
-13.
|
| 773 |
-
-13.
|
| 774 |
-
-13.
|
| 775 |
-
-13.
|
| 776 |
-
-13.
|
| 777 |
-
-13.
|
| 778 |
-
-13.
|
| 779 |
-
-13.
|
| 780 |
-
-13.
|
| 781 |
-
-13.
|
| 782 |
-
-13.
|
| 783 |
-
-13.
|
| 784 |
-
-13.
|
| 785 |
-
-13.
|
| 786 |
-
-13.
|
| 787 |
-
-13.
|
| 788 |
-
-13.
|
| 789 |
-
-13.
|
| 790 |
-
-13.
|
| 791 |
-
-13.
|
| 792 |
-
-13.
|
| 793 |
-
-13.
|
| 794 |
-
-13.
|
| 795 |
-
-13.
|
| 796 |
-
-13.
|
| 797 |
-
-13.
|
| 798 |
-
-13.
|
| 799 |
-
-13.
|
| 800 |
-
-13.
|
| 801 |
-
-13.
|
| 802 |
-
-13.
|
| 803 |
-
-13.
|
| 804 |
-
-13.
|
| 805 |
-
-13.
|
| 806 |
-
-13.
|
| 807 |
-
-13.
|
| 808 |
-
-13.
|
| 809 |
-
-13.
|
| 810 |
-
-13.
|
| 811 |
-
-13.
|
| 812 |
-
-13.
|
| 813 |
-
-13.
|
| 814 |
-
-13.
|
| 815 |
-
-13.
|
| 816 |
-
-13.
|
| 817 |
-
-13.
|
| 818 |
-
-13.
|
| 819 |
-
-13.
|
| 820 |
-
-13.
|
| 821 |
-
-13.
|
| 822 |
-
-13.
|
| 823 |
-
-13.
|
| 824 |
-
-13.
|
| 825 |
-
-13.
|
| 826 |
-
-13.
|
| 827 |
-
-13.
|
| 828 |
-
-13.
|
| 829 |
-
-13.
|
| 830 |
-
-13.
|
| 831 |
-
-13.
|
| 832 |
-
-13.
|
| 833 |
-
-13.
|
| 834 |
-
-13.
|
| 835 |
-
-13.
|
| 836 |
-
-13.
|
| 837 |
-
-13.
|
| 838 |
-
-13.
|
| 839 |
-
-13.
|
| 840 |
-
-13.
|
| 841 |
-
-13.
|
| 842 |
-
-13.
|
| 843 |
-
-13.
|
| 844 |
-
-13.
|
| 845 |
-
-13.
|
| 846 |
-
-13.
|
| 847 |
-
-13.
|
| 848 |
-
-13.
|
| 849 |
-
-13.
|
| 850 |
-
-13.
|
| 851 |
-
-13.
|
| 852 |
-
-13.
|
| 853 |
-
-13.
|
| 854 |
-
-13.
|
| 855 |
-
-13.
|
| 856 |
-
-13.
|
| 857 |
-
-13.
|
| 858 |
-
-13.
|
| 859 |
-
-13.
|
| 860 |
-
-13.
|
| 861 |
-
-13.
|
| 862 |
-
-13.
|
| 863 |
-
-13.
|
| 864 |
-
-13.
|
| 865 |
-
-13.
|
| 866 |
-
-13.
|
| 867 |
-
-13.
|
| 868 |
-
-13.
|
| 869 |
-
-
|
| 870 |
-
-13.
|
| 871 |
-
-
|
| 872 |
-
-
|
| 873 |
-
-13.
|
| 874 |
-
-
|
| 875 |
-
-
|
| 876 |
-
-
|
| 877 |
-
-
|
| 878 |
-
-
|
| 879 |
-
-
|
| 880 |
-
-
|
| 881 |
-
-
|
| 882 |
-
-
|
| 883 |
-
-
|
| 884 |
-
-14.
|
| 885 |
-
-
|
| 886 |
-
-14.
|
| 887 |
-
-
|
| 888 |
-
-14.
|
| 889 |
-
-
|
| 890 |
-
-
|
| 891 |
-
-
|
| 892 |
-
-
|
| 893 |
-
-14.
|
| 894 |
-
-
|
| 895 |
-
-
|
| 896 |
-
-14.
|
| 897 |
-
-14.
|
| 898 |
-
-
|
| 899 |
-
-
|
| 900 |
-
-
|
| 901 |
-
-
|
| 902 |
-
-
|
| 903 |
-
-14.
|
| 904 |
-
-14.
|
| 905 |
-
-14.
|
| 906 |
-
-14.
|
| 907 |
-
-
|
| 908 |
-
-14.
|
| 909 |
-
-14.
|
| 910 |
-
-
|
| 911 |
-
-
|
| 912 |
-
-14.
|
| 913 |
-
-
|
| 914 |
-
-14.
|
| 915 |
-
-14.
|
| 916 |
-
-
|
| 917 |
-
-14.
|
| 918 |
-
-14.
|
| 919 |
-
-14.
|
| 920 |
-
-14.
|
| 921 |
-
-
|
| 922 |
-
-14.
|
| 923 |
-
-14.
|
| 924 |
-
-14.
|
| 925 |
-
-14.
|
| 926 |
-
-14.
|
| 927 |
-
-
|
| 928 |
-
-14.
|
| 929 |
-
-14.
|
| 930 |
-
-14.
|
| 931 |
-
-14.
|
| 932 |
-
-14.
|
| 933 |
-
-14.
|
| 934 |
-
-14.
|
| 935 |
-
-14.
|
| 936 |
-
-14.
|
| 937 |
-
-14.
|
| 938 |
-
-14.
|
| 939 |
-
-14.
|
| 940 |
-
-14.
|
| 941 |
-
-14.
|
| 942 |
-
-14.
|
| 943 |
-
-14.
|
| 944 |
-
-14.
|
| 945 |
-
-14.
|
| 946 |
-
-14.
|
| 947 |
-
-14.
|
| 948 |
-
-14.
|
| 949 |
-
-14.
|
| 950 |
-
-14.
|
| 951 |
-
-14.
|
| 952 |
-
-14.
|
| 953 |
-
-14.
|
| 954 |
-
-14.
|
| 955 |
-
-14.
|
| 956 |
]
|
| 957 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"args": {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
"conv_tasnet_params": {
|
| 4 |
"bn_chan": 128,
|
| 5 |
"decoder_activation": "sigmoid",
|
|
|
|
| 10 |
"n_blocks": 5,
|
| 11 |
"n_filters": 512,
|
| 12 |
"n_repeats": 2,
|
| 13 |
+
"norm_type": {},
|
| 14 |
"skip_chan": 128,
|
| 15 |
"stride": 64
|
| 16 |
},
|
|
|
|
| 39 |
"continual_train": false,
|
| 40 |
"delimit_valid_L_root": null,
|
| 41 |
"delimit_valid_root": null,
|
| 42 |
+
"exp_name": "delimit_6_s",
|
| 43 |
+
"output_directory": "/path/to/delimit/results",
|
| 44 |
+
"ozone_root": "/path/to/delimit/data",
|
| 45 |
"pretrained_classifier": null,
|
| 46 |
"resume": null,
|
| 47 |
+
"root": "/path/to/musdb18hq"
|
| 48 |
},
|
| 49 |
"gpu": 0,
|
| 50 |
"hyperparams": {
|
|
|
|
| 60 |
"patience": 50,
|
| 61 |
"weight_decay": 0.01
|
| 62 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
"model_loss_params": {
|
| 64 |
"architecture": "conv_tasnet_mask_on_output",
|
| 65 |
"efficient_mixit_threshold": null,
|
|
|
|
| 77 |
]
|
| 78 |
},
|
| 79 |
"ngpus_per_node": 1,
|
| 80 |
+
"output": "/path/to/delimit/results/checkpoint/delimit_6_s",
|
| 81 |
"resume": {},
|
| 82 |
"sample_rate": {},
|
| 83 |
"sys_params": {
|
|
|
|
| 93 |
"dataset": "delimit",
|
| 94 |
"target": "all",
|
| 95 |
"train": true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 96 |
}
|
| 97 |
},
|
| 98 |
+
"best_epoch": 196,
|
| 99 |
+
"best_loss": -14.249421119689941,
|
| 100 |
"epochs_trained": 200,
|
| 101 |
+
"num_bad_epochs": 4,
|
| 102 |
"train_loss_history": [
|
| 103 |
+
-15.31794548034668,
|
| 104 |
+
-15.532625198364258,
|
| 105 |
+
-15.587085723876953,
|
| 106 |
+
-15.6836519241333,
|
| 107 |
+
-15.741823196411133,
|
| 108 |
+
-15.734150886535645,
|
| 109 |
+
-15.819906234741211,
|
| 110 |
+
-15.87240982055664,
|
| 111 |
+
-15.931070327758789,
|
| 112 |
+
-15.94979190826416,
|
| 113 |
+
-15.979517936706543,
|
| 114 |
+
-16.0633487701416,
|
| 115 |
+
-16.25364112854004,
|
| 116 |
+
-16.308530807495117,
|
| 117 |
+
-16.35249900817871,
|
| 118 |
+
-16.306543350219727,
|
| 119 |
+
-16.339628219604492,
|
| 120 |
+
-16.46212387084961,
|
| 121 |
+
-16.457759857177734,
|
| 122 |
+
-16.50151824951172,
|
| 123 |
+
-16.51740074157715,
|
| 124 |
+
-16.582855224609375,
|
| 125 |
+
-16.561899185180664,
|
| 126 |
+
-16.58802604675293,
|
| 127 |
+
-16.598905563354492,
|
| 128 |
+
-16.733430862426758,
|
| 129 |
+
-16.667192459106445,
|
| 130 |
+
-16.705392837524414,
|
| 131 |
+
-16.618309020996094,
|
| 132 |
+
-16.63999366760254,
|
| 133 |
+
-16.710491180419922,
|
| 134 |
+
-16.762954711914062,
|
| 135 |
+
-16.753698348999023,
|
| 136 |
+
-16.84703254699707,
|
| 137 |
+
-16.835758209228516,
|
| 138 |
+
-16.81234359741211,
|
| 139 |
+
-16.872507095336914,
|
| 140 |
+
-16.8001651763916,
|
| 141 |
+
-16.795087814331055,
|
| 142 |
+
-16.734268188476562,
|
| 143 |
+
-16.824871063232422,
|
| 144 |
+
-16.775482177734375,
|
| 145 |
+
-16.842336654663086,
|
| 146 |
+
-16.86620330810547,
|
| 147 |
+
-16.876514434814453,
|
| 148 |
+
-16.793272018432617,
|
| 149 |
+
-16.826705932617188,
|
| 150 |
+
-16.835668563842773,
|
| 151 |
+
-16.893131256103516,
|
| 152 |
+
-16.938766479492188,
|
| 153 |
+
-16.933948516845703,
|
| 154 |
+
-16.918254852294922,
|
| 155 |
+
-16.99462127685547,
|
| 156 |
+
-16.980653762817383,
|
| 157 |
+
-16.913259506225586,
|
| 158 |
+
-16.965167999267578,
|
| 159 |
+
-17.042926788330078,
|
| 160 |
+
-16.958335876464844,
|
| 161 |
+
-17.03352165222168,
|
| 162 |
+
-16.983625411987305,
|
| 163 |
+
-16.975845336914062,
|
| 164 |
+
-17.104887008666992,
|
| 165 |
+
-17.040782928466797,
|
| 166 |
+
-17.020822525024414,
|
| 167 |
+
-16.959245681762695,
|
| 168 |
+
-17.051708221435547,
|
| 169 |
+
-16.99237632751465,
|
| 170 |
+
-17.059650421142578,
|
| 171 |
+
-17.13454818725586,
|
| 172 |
+
-17.100242614746094,
|
| 173 |
+
-17.106279373168945,
|
| 174 |
+
-17.080814361572266,
|
| 175 |
+
-17.053775787353516,
|
| 176 |
+
-17.06512451171875,
|
| 177 |
+
-17.14462661743164,
|
| 178 |
+
-17.16411590576172,
|
| 179 |
+
-17.12580108642578,
|
| 180 |
+
-17.150821685791016,
|
| 181 |
+
-17.118499755859375,
|
| 182 |
+
-17.14512825012207,
|
| 183 |
+
-17.140581130981445,
|
| 184 |
+
-17.177623748779297,
|
| 185 |
+
-17.16305923461914,
|
| 186 |
+
-17.198230743408203,
|
| 187 |
+
-17.210004806518555,
|
| 188 |
+
-17.24343490600586,
|
| 189 |
+
-17.152063369750977,
|
| 190 |
+
-17.23419189453125,
|
| 191 |
+
-17.277408599853516,
|
| 192 |
+
-17.13043975830078,
|
| 193 |
+
-17.106294631958008,
|
| 194 |
+
-17.210983276367188,
|
| 195 |
+
-17.16777992248535,
|
| 196 |
+
-17.159547805786133,
|
| 197 |
+
-17.356822967529297,
|
| 198 |
+
-17.129384994506836,
|
| 199 |
+
-17.124343872070312,
|
| 200 |
+
-17.177310943603516,
|
| 201 |
+
-17.23253059387207,
|
| 202 |
+
-17.174467086791992,
|
| 203 |
+
-17.31760597229004,
|
| 204 |
+
-17.1961727142334,
|
| 205 |
+
-17.30803108215332,
|
| 206 |
+
-17.2936954498291,
|
| 207 |
+
-17.2106990814209,
|
| 208 |
+
-17.156301498413086,
|
| 209 |
+
-17.319316864013672,
|
| 210 |
+
-17.22032356262207,
|
| 211 |
+
-17.296268463134766,
|
| 212 |
+
-17.217344284057617,
|
| 213 |
+
-17.244640350341797,
|
| 214 |
+
-17.211294174194336,
|
| 215 |
+
-17.31123924255371,
|
| 216 |
+
-17.331533432006836,
|
| 217 |
+
-17.32676887512207,
|
| 218 |
+
-17.320463180541992,
|
| 219 |
+
-17.400226593017578,
|
| 220 |
+
-17.38167381286621,
|
| 221 |
+
-17.352170944213867,
|
| 222 |
+
-17.267051696777344,
|
| 223 |
+
-17.341922760009766,
|
| 224 |
+
-17.255464553833008,
|
| 225 |
+
-17.386539459228516,
|
| 226 |
+
-17.297945022583008,
|
| 227 |
+
-17.419677734375,
|
| 228 |
+
-17.35832977294922,
|
| 229 |
+
-17.323421478271484,
|
| 230 |
+
-17.431251525878906,
|
| 231 |
+
-17.351421356201172,
|
| 232 |
+
-17.401077270507812,
|
| 233 |
+
-17.419261932373047,
|
| 234 |
+
-17.332902908325195,
|
| 235 |
+
-17.376359939575195,
|
| 236 |
+
-17.339527130126953,
|
| 237 |
+
-17.40888214111328,
|
| 238 |
+
-17.38826560974121,
|
| 239 |
+
-17.53896713256836,
|
| 240 |
+
-17.391586303710938,
|
| 241 |
+
-17.407407760620117,
|
| 242 |
+
-17.348012924194336,
|
| 243 |
+
-17.4061279296875,
|
| 244 |
+
-17.438644409179688,
|
| 245 |
+
-17.409500122070312,
|
| 246 |
+
-17.379648208618164,
|
| 247 |
+
-17.450407028198242,
|
| 248 |
+
-17.42279052734375,
|
| 249 |
+
-17.38970947265625,
|
| 250 |
+
-17.41756820678711,
|
| 251 |
+
-17.463808059692383,
|
| 252 |
+
-17.4168701171875,
|
| 253 |
+
-17.469118118286133,
|
| 254 |
+
-17.454309463500977,
|
| 255 |
+
-17.41945457458496,
|
| 256 |
+
-17.387374877929688,
|
| 257 |
+
-17.450119018554688,
|
| 258 |
+
-17.396865844726562,
|
| 259 |
+
-17.534053802490234,
|
| 260 |
+
-17.474985122680664,
|
| 261 |
+
-17.421100616455078,
|
| 262 |
+
-17.413650512695312,
|
| 263 |
+
-17.395294189453125,
|
| 264 |
+
-17.489408493041992,
|
| 265 |
+
-17.48147964477539,
|
| 266 |
+
-17.464696884155273,
|
| 267 |
+
-17.3919677734375,
|
| 268 |
+
-17.500484466552734,
|
| 269 |
+
-17.56847381591797,
|
| 270 |
+
-17.562353134155273,
|
| 271 |
+
-17.53761863708496,
|
| 272 |
+
-17.519760131835938,
|
| 273 |
+
-17.532852172851562,
|
| 274 |
+
-17.426738739013672,
|
| 275 |
+
-17.546945571899414,
|
| 276 |
+
-17.555721282958984,
|
| 277 |
+
-17.439008712768555,
|
| 278 |
+
-17.54346466064453,
|
| 279 |
+
-17.536434173583984,
|
| 280 |
+
-17.460493087768555,
|
| 281 |
+
-17.572668075561523,
|
| 282 |
+
-17.51237678527832,
|
| 283 |
+
-17.569177627563477,
|
| 284 |
+
-17.430326461791992,
|
| 285 |
+
-17.505939483642578,
|
| 286 |
+
-17.62041473388672,
|
| 287 |
+
-17.5394229888916,
|
| 288 |
+
-17.555639266967773,
|
| 289 |
+
-17.523653030395508,
|
| 290 |
+
-17.57554817199707,
|
| 291 |
+
-17.622777938842773,
|
| 292 |
+
-17.55404281616211,
|
| 293 |
+
-17.544889450073242,
|
| 294 |
+
-17.51767921447754,
|
| 295 |
+
-17.55059814453125,
|
| 296 |
+
-17.518476486206055,
|
| 297 |
+
-17.548358917236328,
|
| 298 |
+
-17.574398040771484,
|
| 299 |
+
-17.620662689208984,
|
| 300 |
+
-17.518407821655273,
|
| 301 |
+
-17.69523048400879,
|
| 302 |
+
-17.58206558227539
|
| 303 |
],
|
| 304 |
"train_time_history": [
|
| 305 |
+
643.9860649108887,
|
| 306 |
+
643.9872717857361,
|
| 307 |
+
528.9625627994537,
|
| 308 |
+
528.9641060829163,
|
| 309 |
+
558.4192473888397,
|
| 310 |
+
558.4204115867615,
|
| 311 |
+
522.8128218650818,
|
| 312 |
+
522.8142325878143,
|
| 313 |
+
561.0230331420898,
|
| 314 |
+
561.0242264270782,
|
| 315 |
+
528.4274871349335,
|
| 316 |
+
528.4289662837982,
|
| 317 |
+
526.8048939704895,
|
| 318 |
+
526.8061168193817,
|
| 319 |
+
545.3310840129852,
|
| 320 |
+
545.3324346542358,
|
| 321 |
+
553.4127798080444,
|
| 322 |
+
553.4142241477966,
|
| 323 |
+
469.73180961608887,
|
| 324 |
+
469.73325300216675,
|
| 325 |
+
859.6335096359253,
|
| 326 |
+
859.6351401805878,
|
| 327 |
+
547.1854898929596,
|
| 328 |
+
547.1867034435272,
|
| 329 |
+
1126.3871772289276,
|
| 330 |
+
1126.3887796401978,
|
| 331 |
+
774.9042837619781,
|
| 332 |
+
774.90554022789,
|
| 333 |
+
1024.1285951137543,
|
| 334 |
+
1024.1300146579742,
|
| 335 |
+
699.7091121673584,
|
| 336 |
+
699.7124738693237,
|
| 337 |
+
780.0040049552917,
|
| 338 |
+
780.0058071613312,
|
| 339 |
+
963.8388843536377,
|
| 340 |
+
963.8420798778534,
|
| 341 |
+
620.4403750896454,
|
| 342 |
+
620.4421138763428,
|
| 343 |
+
1047.070762872696,
|
| 344 |
+
1047.0722396373749,
|
| 345 |
+
827.6828126907349,
|
| 346 |
+
827.6843898296356,
|
| 347 |
+
1165.005133152008,
|
| 348 |
+
1165.0069043636322,
|
| 349 |
+
739.5405783653259,
|
| 350 |
+
739.5420775413513,
|
| 351 |
+
1001.2236783504486,
|
| 352 |
+
1001.2252504825592,
|
| 353 |
+
1067.7640767097473,
|
| 354 |
+
1067.7656264305115,
|
| 355 |
+
921.4736218452454,
|
| 356 |
+
921.4750645160675,
|
| 357 |
+
801.219244480133,
|
| 358 |
+
801.2207653522491,
|
| 359 |
+
861.3568906784058,
|
| 360 |
+
861.3583245277405,
|
| 361 |
+
1008.0664939880371,
|
| 362 |
+
1008.0683662891388,
|
| 363 |
+
920.576229095459,
|
| 364 |
+
920.5788991451263,
|
| 365 |
+
880.6784987449646,
|
| 366 |
+
880.6799793243408,
|
| 367 |
+
895.7339191436768,
|
| 368 |
+
895.7356226444244,
|
| 369 |
+
790.5057306289673,
|
| 370 |
+
790.5074284076691,
|
| 371 |
+
1085.6954364776611,
|
| 372 |
+
1085.6970047950745,
|
| 373 |
+
802.0637407302856,
|
| 374 |
+
802.0654089450836,
|
| 375 |
+
1193.2618012428284,
|
| 376 |
+
1193.264021396637,
|
| 377 |
+
935.7141160964966,
|
| 378 |
+
935.7156445980072,
|
| 379 |
+
808.0279462337494,
|
| 380 |
+
808.0296728610992,
|
| 381 |
+
1038.0580270290375,
|
| 382 |
+
1038.0595524311066,
|
| 383 |
+
1013.4921579360962,
|
| 384 |
+
1013.4939999580383,
|
| 385 |
+
757.7547035217285,
|
| 386 |
+
757.7567255496979,
|
| 387 |
+
845.1490731239319,
|
| 388 |
+
845.1508462429047,
|
| 389 |
+
739.9631822109222,
|
| 390 |
+
739.964765548706,
|
| 391 |
+
708.7424352169037,
|
| 392 |
+
708.744065284729,
|
| 393 |
+
867.549337387085,
|
| 394 |
+
867.5510377883911,
|
| 395 |
+
847.8736081123352,
|
| 396 |
+
847.8753995895386,
|
| 397 |
+
935.6658344268799,
|
| 398 |
+
935.6678290367126,
|
| 399 |
+
668.4180035591125,
|
| 400 |
+
668.4196381568909,
|
| 401 |
+
864.7828624248505,
|
| 402 |
+
864.7846624851227,
|
| 403 |
+
610.5543413162231,
|
| 404 |
+
610.5562927722931,
|
| 405 |
+
963.1069548130035,
|
| 406 |
+
963.1089107990265,
|
| 407 |
+
856.1557567119598,
|
| 408 |
+
856.1705782413483,
|
| 409 |
+
426.24726700782776,
|
| 410 |
+
426.2493166923523,
|
| 411 |
+
539.8778085708618,
|
| 412 |
+
539.8799962997437,
|
| 413 |
+
474.9254755973816,
|
| 414 |
+
474.92752265930176,
|
| 415 |
+
600.3033347129822,
|
| 416 |
+
600.3053631782532,
|
| 417 |
+
956.2122406959534,
|
| 418 |
+
956.2141120433807,
|
| 419 |
+
692.8321406841278,
|
| 420 |
+
692.8341588973999,
|
| 421 |
+
803.1076669692993,
|
| 422 |
+
803.1093649864197,
|
| 423 |
+
896.4918370246887,
|
| 424 |
+
896.52978515625,
|
| 425 |
+
728.860675573349,
|
| 426 |
+
728.8627433776855,
|
| 427 |
+
756.9108259677887,
|
| 428 |
+
756.9127867221832,
|
| 429 |
+
828.5251045227051,
|
| 430 |
+
828.5271294116974,
|
| 431 |
+
1062.679036140442,
|
| 432 |
+
1062.7158579826355,
|
| 433 |
+
904.0013160705566,
|
| 434 |
+
904.0032558441162,
|
| 435 |
+
771.9771268367767,
|
| 436 |
+
771.9794111251831,
|
| 437 |
+
795.6474304199219,
|
| 438 |
+
795.6494672298431,
|
| 439 |
+
889.8319909572601,
|
| 440 |
+
889.8340003490448,
|
| 441 |
+
741.2604899406433,
|
| 442 |
+
741.2627236843109,
|
| 443 |
+
1015.7445421218872,
|
| 444 |
+
1015.7466597557068,
|
| 445 |
+
775.8348610401154,
|
| 446 |
+
775.8368198871613,
|
| 447 |
+
965.0455288887024,
|
| 448 |
+
965.0482292175293,
|
| 449 |
+
838.926376581192,
|
| 450 |
+
838.9284424781799,
|
| 451 |
+
802.9929301738739,
|
| 452 |
+
802.9959852695465,
|
| 453 |
+
860.2290518283844,
|
| 454 |
+
860.2350649833679,
|
| 455 |
+
853.2685232162476,
|
| 456 |
+
853.2705676555634,
|
| 457 |
+
798.6124193668365,
|
| 458 |
+
798.6144640445709,
|
| 459 |
+
839.9211938381195,
|
| 460 |
+
839.9233500957489,
|
| 461 |
+
788.7458899021149,
|
| 462 |
+
788.7479918003082,
|
| 463 |
+
832.719743013382,
|
| 464 |
+
832.7218022346497,
|
| 465 |
+
869.9167902469635,
|
| 466 |
+
869.9188315868378,
|
| 467 |
+
853.8480832576752,
|
| 468 |
+
853.8501524925232,
|
| 469 |
+
903.2263419628143,
|
| 470 |
+
903.2285974025726,
|
| 471 |
+
781.5149805545807,
|
| 472 |
+
781.5169486999512,
|
| 473 |
+
937.1362228393555,
|
| 474 |
+
937.1383624076843,
|
| 475 |
+
927.0537958145142,
|
| 476 |
+
927.0559511184692,
|
| 477 |
+
764.9814400672913,
|
| 478 |
+
764.9838018417358,
|
| 479 |
+
959.3788044452667,
|
| 480 |
+
959.3809623718262,
|
| 481 |
+
761.449052810669,
|
| 482 |
+
761.4515566825867,
|
| 483 |
+
919.7475502490997,
|
| 484 |
+
919.7504234313965,
|
| 485 |
+
851.5672256946564,
|
| 486 |
+
851.5721266269684,
|
| 487 |
+
941.569394826889,
|
| 488 |
+
941.5716257095337,
|
| 489 |
+
807.7968187332153,
|
| 490 |
+
807.7990479469299,
|
| 491 |
+
798.0111818313599,
|
| 492 |
+
798.0133996009827,
|
| 493 |
+
843.928961277008,
|
| 494 |
+
843.9310166835785,
|
| 495 |
+
869.314715385437,
|
| 496 |
+
869.3182194232941,
|
| 497 |
+
911.9839789867401,
|
| 498 |
+
911.9860379695892,
|
| 499 |
+
770.2935245037079,
|
| 500 |
+
770.2958972454071,
|
| 501 |
+
888.4293539524078,
|
| 502 |
+
888.4314444065094,
|
| 503 |
+
733.4001567363739,
|
| 504 |
+
733.4025056362152,
|
| 505 |
+
1035.584077835083,
|
| 506 |
+
1035.5863111019135,
|
| 507 |
+
1140.9205222129822,
|
| 508 |
+
1140.9228584766388,
|
| 509 |
+
781.6603729724884,
|
| 510 |
+
781.6628739833832,
|
| 511 |
+
943.8865151405334,
|
| 512 |
+
943.8887708187103,
|
| 513 |
+
778.2331438064575,
|
| 514 |
+
778.2357380390167,
|
| 515 |
+
1025.9813432693481,
|
| 516 |
+
1025.9837622642517,
|
| 517 |
+
860.2698698043823,
|
| 518 |
+
860.2723951339722,
|
| 519 |
+
918.6495940685272,
|
| 520 |
+
918.6520156860352,
|
| 521 |
+
1102.5500702857971,
|
| 522 |
+
1102.5524752140045,
|
| 523 |
+
830.32785987854,
|
| 524 |
+
830.3302974700928,
|
| 525 |
+
866.6165459156036,
|
| 526 |
+
866.619024515152,
|
| 527 |
+
885.4596834182739,
|
| 528 |
+
885.4681732654572,
|
| 529 |
+
768.3422167301178,
|
| 530 |
+
768.3446609973907,
|
| 531 |
+
942.0244996547699,
|
| 532 |
+
942.027464389801,
|
| 533 |
+
809.3669137954712,
|
| 534 |
+
809.3692705631256,
|
| 535 |
+
1067.3708248138428,
|
| 536 |
+
1067.373480796814,
|
| 537 |
+
832.4443922042847,
|
| 538 |
+
832.4468176364899,
|
| 539 |
+
785.9303669929504,
|
| 540 |
+
785.9332220554352,
|
| 541 |
+
1093.500118970871,
|
| 542 |
+
1093.5026597976685,
|
| 543 |
+
869.0642418861389,
|
| 544 |
+
869.0674021244049,
|
| 545 |
+
868.1316828727722,
|
| 546 |
+
868.1640372276306,
|
| 547 |
+
959.0494060516357,
|
| 548 |
+
959.0797781944275,
|
| 549 |
+
818.9730713367462,
|
| 550 |
+
819.007230758667,
|
| 551 |
+
1022.8524475097656,
|
| 552 |
+
1022.8548305034637,
|
| 553 |
+
941.8056468963623,
|
| 554 |
+
941.8086836338043,
|
| 555 |
+
881.7899188995361,
|
| 556 |
+
881.7922761440277,
|
| 557 |
+
992.1765818595886,
|
| 558 |
+
992.1791572570801,
|
| 559 |
+
858.3153488636017,
|
| 560 |
+
858.3179316520691,
|
| 561 |
+
882.4648759365082,
|
| 562 |
+
882.4671075344086,
|
| 563 |
+
847.808108329773,
|
| 564 |
+
847.8110916614532,
|
| 565 |
+
555.4549334049225,
|
| 566 |
+
555.4601621627808,
|
| 567 |
+
786.5489327907562,
|
| 568 |
+
786.5517146587372,
|
| 569 |
+
910.0199327468872,
|
| 570 |
+
910.0227093696594,
|
| 571 |
+
770.1365096569061,
|
| 572 |
+
770.1393489837646,
|
| 573 |
+
783.1216824054718,
|
| 574 |
+
783.1249165534973,
|
| 575 |
+
807.918844461441,
|
| 576 |
+
807.9215955734253,
|
| 577 |
+
870.9120817184448,
|
| 578 |
+
870.9147598743439,
|
| 579 |
+
912.6107225418091,
|
| 580 |
+
912.6146140098572,
|
| 581 |
+
777.4123938083649,
|
| 582 |
+
777.4149777889252,
|
| 583 |
+
935.326208114624,
|
| 584 |
+
935.331540107727,
|
| 585 |
+
956.2307059764862,
|
| 586 |
+
956.2338259220123,
|
| 587 |
+
886.5277955532074,
|
| 588 |
+
886.530389547348,
|
| 589 |
+
736.0428268909454,
|
| 590 |
+
736.0452334880829,
|
| 591 |
+
888.5269570350647,
|
| 592 |
+
888.5295820236206,
|
| 593 |
+
852.9950931072235,
|
| 594 |
+
852.9977452754974,
|
| 595 |
+
868.0804634094238,
|
| 596 |
+
868.0830945968628,
|
| 597 |
+
703.3365910053253,
|
| 598 |
+
703.3392133712769,
|
| 599 |
+
837.9987609386444,
|
| 600 |
+
838.0025026798248,
|
| 601 |
+
759.0810058116913,
|
| 602 |
+
759.0846593379974,
|
| 603 |
+
870.229129076004,
|
| 604 |
+
870.2318723201752,
|
| 605 |
+
709.8269219398499,
|
| 606 |
+
709.829594373703,
|
| 607 |
+
833.9505863189697,
|
| 608 |
+
833.9533932209015,
|
| 609 |
+
753.7844591140747,
|
| 610 |
+
753.7874174118042,
|
| 611 |
+
898.7497165203094,
|
| 612 |
+
898.7531206607819,
|
| 613 |
+
745.704558134079,
|
| 614 |
+
745.7079939842224,
|
| 615 |
+
878.0734825134277,
|
| 616 |
+
878.0763297080994,
|
| 617 |
+
670.2211837768555,
|
| 618 |
+
670.2240908145905,
|
| 619 |
+
858.4128413200378,
|
| 620 |
+
858.4155530929565,
|
| 621 |
+
777.6660959720612,
|
| 622 |
+
777.6698431968689,
|
| 623 |
+
819.6351799964905,
|
| 624 |
+
819.6389005184174,
|
| 625 |
+
733.737197637558,
|
| 626 |
+
733.7401597499847,
|
| 627 |
+
828.6105387210846,
|
| 628 |
+
828.6132705211639,
|
| 629 |
+
784.2902550697327,
|
| 630 |
+
784.2956314086914,
|
| 631 |
+
836.3869302272797,
|
| 632 |
+
836.3898220062256,
|
| 633 |
+
858.6022350788116,
|
| 634 |
+
858.6052379608154,
|
| 635 |
+
955.2680513858795,
|
| 636 |
+
955.271077632904,
|
| 637 |
+
878.1803381443024,
|
| 638 |
+
878.1832795143127,
|
| 639 |
+
767.508730173111,
|
| 640 |
+
767.5115406513214,
|
| 641 |
+
833.3522138595581,
|
| 642 |
+
833.3553261756897,
|
| 643 |
+
892.8629071712494,
|
| 644 |
+
892.8655965328217,
|
| 645 |
+
671.7524387836456,
|
| 646 |
+
671.7554504871368,
|
| 647 |
+
876.7835144996643,
|
| 648 |
+
876.7867124080658,
|
| 649 |
+
911.0015926361084,
|
| 650 |
+
911.004412651062,
|
| 651 |
+
742.7634251117706,
|
| 652 |
+
742.7665829658508,
|
| 653 |
+
944.330041885376,
|
| 654 |
+
944.3329372406006,
|
| 655 |
+
719.2029738426208,
|
| 656 |
+
719.2059841156006,
|
| 657 |
+
898.761207818985,
|
| 658 |
+
898.7641687393188,
|
| 659 |
+
749.1451716423035,
|
| 660 |
+
749.1481702327728,
|
| 661 |
+
891.7688472270966,
|
| 662 |
+
891.7716801166534,
|
| 663 |
+
706.195677280426,
|
| 664 |
+
706.1997528076172,
|
| 665 |
+
886.1882915496826,
|
| 666 |
+
886.1918540000916,
|
| 667 |
+
809.9131712913513,
|
| 668 |
+
809.9162707328796,
|
| 669 |
+
754.2193782329559,
|
| 670 |
+
754.2231476306915,
|
| 671 |
+
894.8782300949097,
|
| 672 |
+
894.8811769485474,
|
| 673 |
+
758.7693364620209,
|
| 674 |
+
758.7728335857391,
|
| 675 |
+
820.3470094203949,
|
| 676 |
+
820.3498859405518,
|
| 677 |
+
819.5574872493744,
|
| 678 |
+
819.5604617595673,
|
| 679 |
+
855.033481836319,
|
| 680 |
+
855.0364987850189,
|
| 681 |
+
747.1743762493134,
|
| 682 |
+
747.1773273944855,
|
| 683 |
+
908.3693246841431,
|
| 684 |
+
908.3723683357239,
|
| 685 |
+
721.278890132904,
|
| 686 |
+
721.2873868942261,
|
| 687 |
+
793.6236374378204,
|
| 688 |
+
793.6265563964844,
|
| 689 |
+
852.4563076496124,
|
| 690 |
+
852.4596071243286,
|
| 691 |
+
960.8885099887848,
|
| 692 |
+
960.8916721343994,
|
| 693 |
+
660.1986150741577,
|
| 694 |
+
660.2016677856445,
|
| 695 |
+
927.1167597770691,
|
| 696 |
+
927.120676279068,
|
| 697 |
+
735.8830101490021,
|
| 698 |
+
735.8871295452118,
|
| 699 |
+
782.0959103107452,
|
| 700 |
+
782.0990858078003,
|
| 701 |
+
585.7808141708374,
|
| 702 |
+
585.7847218513489,
|
| 703 |
+
771.3821742534637
|
| 704 |
],
|
| 705 |
"valid_loss_history": [
|
| 706 |
+
-12.794309616088867,
|
| 707 |
+
-12.791732788085938,
|
| 708 |
+
-12.91625690460205,
|
| 709 |
+
-12.779610633850098,
|
| 710 |
+
-12.953689575195312,
|
| 711 |
+
-12.931943893432617,
|
| 712 |
+
-13.096039772033691,
|
| 713 |
+
-13.037881851196289,
|
| 714 |
+
-13.055084228515625,
|
| 715 |
+
-13.191240310668945,
|
| 716 |
+
-13.126899719238281,
|
| 717 |
+
-13.200287818908691,
|
| 718 |
+
-13.30455207824707,
|
| 719 |
+
-13.396119117736816,
|
| 720 |
+
-13.430177688598633,
|
| 721 |
+
-13.486970901489258,
|
| 722 |
+
-13.518340110778809,
|
| 723 |
+
-13.541844367980957,
|
| 724 |
+
-13.491021156311035,
|
| 725 |
+
-13.589361190795898,
|
| 726 |
+
-13.543672561645508,
|
| 727 |
+
-13.630899429321289,
|
| 728 |
+
-13.563502311706543,
|
| 729 |
+
-13.59986400604248,
|
| 730 |
+
-13.614956855773926,
|
| 731 |
+
-13.634488105773926,
|
| 732 |
+
-13.633395195007324,
|
| 733 |
+
-13.667802810668945,
|
| 734 |
+
-13.626877784729004,
|
| 735 |
+
-13.661863327026367,
|
| 736 |
+
-13.68739128112793,
|
| 737 |
+
-13.485514640808105,
|
| 738 |
+
-13.60242748260498,
|
| 739 |
+
-13.690133094787598,
|
| 740 |
+
-13.552231788635254,
|
| 741 |
+
-13.632238388061523,
|
| 742 |
+
-13.717124938964844,
|
| 743 |
+
-13.679450988769531,
|
| 744 |
+
-13.722838401794434,
|
| 745 |
+
-13.661483764648438,
|
| 746 |
+
-13.682496070861816,
|
| 747 |
+
-13.715971946716309,
|
| 748 |
+
-13.749290466308594,
|
| 749 |
+
-13.762848854064941,
|
| 750 |
+
-13.767416000366211,
|
| 751 |
+
-13.74958324432373,
|
| 752 |
+
-13.738387107849121,
|
| 753 |
+
-13.780165672302246,
|
| 754 |
+
-13.754794120788574,
|
| 755 |
+
-13.762205123901367,
|
| 756 |
+
-13.73810863494873,
|
| 757 |
+
-13.77485466003418,
|
| 758 |
+
-13.730010032653809,
|
| 759 |
+
-13.785795211791992,
|
| 760 |
+
-13.806999206542969,
|
| 761 |
+
-13.76683521270752,
|
| 762 |
+
-13.853240966796875,
|
| 763 |
+
-13.741830825805664,
|
| 764 |
+
-13.700677871704102,
|
| 765 |
+
-13.755581855773926,
|
| 766 |
+
-13.827898979187012,
|
| 767 |
+
-13.81043815612793,
|
| 768 |
+
-13.81755256652832,
|
| 769 |
+
-13.80018424987793,
|
| 770 |
+
-13.761467933654785,
|
| 771 |
+
-13.801885604858398,
|
| 772 |
+
-13.81956958770752,
|
| 773 |
+
-13.85124397277832,
|
| 774 |
+
-13.847865104675293,
|
| 775 |
+
-13.80194091796875,
|
| 776 |
+
-13.832521438598633,
|
| 777 |
+
-13.816971778869629,
|
| 778 |
+
-13.836453437805176,
|
| 779 |
+
-13.8397216796875,
|
| 780 |
+
-13.867764472961426,
|
| 781 |
+
-13.853805541992188,
|
| 782 |
+
-13.841354370117188,
|
| 783 |
+
-13.82963752746582,
|
| 784 |
+
-13.906807899475098,
|
| 785 |
+
-13.816667556762695,
|
| 786 |
+
-13.810857772827148,
|
| 787 |
+
-13.861968040466309,
|
| 788 |
+
-13.745440483093262,
|
| 789 |
+
-13.892507553100586,
|
| 790 |
+
-13.88720703125,
|
| 791 |
+
-13.882627487182617,
|
| 792 |
+
-13.882369995117188,
|
| 793 |
+
-13.889479637145996,
|
| 794 |
+
-13.888933181762695,
|
| 795 |
+
-13.846816062927246,
|
| 796 |
+
-13.886863708496094,
|
| 797 |
+
-13.905411720275879,
|
| 798 |
+
-13.858970642089844,
|
| 799 |
+
-13.86181640625,
|
| 800 |
+
-13.926137924194336,
|
| 801 |
+
-13.909533500671387,
|
| 802 |
+
-13.937440872192383,
|
| 803 |
+
-13.929015159606934,
|
| 804 |
+
-13.953341484069824,
|
| 805 |
+
-13.922316551208496,
|
| 806 |
+
-13.967865943908691,
|
| 807 |
+
-13.940139770507812,
|
| 808 |
+
-13.949483871459961,
|
| 809 |
+
-13.969477653503418,
|
| 810 |
+
-13.999845504760742,
|
| 811 |
+
-13.944615364074707,
|
| 812 |
+
-13.912625312805176,
|
| 813 |
+
-13.995530128479004,
|
| 814 |
+
-13.974560737609863,
|
| 815 |
+
-13.922788619995117,
|
| 816 |
+
-13.929801940917969,
|
| 817 |
+
-13.974846839904785,
|
| 818 |
+
-13.972578048706055,
|
| 819 |
+
-14.02281665802002,
|
| 820 |
+
-13.961212158203125,
|
| 821 |
+
-14.013654708862305,
|
| 822 |
+
-14.004365921020508,
|
| 823 |
+
-13.951823234558105,
|
| 824 |
+
-14.018106460571289,
|
| 825 |
+
-14.029194831848145,
|
| 826 |
+
-14.028749465942383,
|
| 827 |
+
-14.041123390197754,
|
| 828 |
+
-14.01710033416748,
|
| 829 |
+
-14.029414176940918,
|
| 830 |
+
-14.063047409057617,
|
| 831 |
+
-14.072081565856934,
|
| 832 |
+
-14.042678833007812,
|
| 833 |
+
-14.044229507446289,
|
| 834 |
+
-14.07115364074707,
|
| 835 |
+
-14.007760047912598,
|
| 836 |
+
-14.092005729675293,
|
| 837 |
+
-14.075860023498535,
|
| 838 |
+
-14.041494369506836,
|
| 839 |
+
-14.08045768737793,
|
| 840 |
+
-14.092697143554688,
|
| 841 |
+
-14.083260536193848,
|
| 842 |
+
-14.051665306091309,
|
| 843 |
+
-14.081698417663574,
|
| 844 |
+
-14.105718612670898,
|
| 845 |
+
-14.095430374145508,
|
| 846 |
+
-14.074408531188965,
|
| 847 |
+
-14.073957443237305,
|
| 848 |
+
-14.089561462402344,
|
| 849 |
+
-14.070525169372559,
|
| 850 |
+
-14.109763145446777,
|
| 851 |
+
-14.121941566467285,
|
| 852 |
+
-14.119242668151855,
|
| 853 |
+
-14.13347339630127,
|
| 854 |
+
-14.097439765930176,
|
| 855 |
+
-14.123647689819336,
|
| 856 |
+
-14.1222505569458,
|
| 857 |
+
-14.08793830871582,
|
| 858 |
+
-14.090388298034668,
|
| 859 |
+
-14.134060859680176,
|
| 860 |
+
-14.147184371948242,
|
| 861 |
+
-14.10704517364502,
|
| 862 |
+
-14.142684936523438,
|
| 863 |
+
-14.133212089538574,
|
| 864 |
+
-14.074119567871094,
|
| 865 |
+
-14.105544090270996,
|
| 866 |
+
-14.093449592590332,
|
| 867 |
+
-14.114527702331543,
|
| 868 |
+
-14.118593215942383,
|
| 869 |
+
-14.15147876739502,
|
| 870 |
+
-14.120092391967773,
|
| 871 |
+
-14.132189750671387,
|
| 872 |
+
-14.15984058380127,
|
| 873 |
+
-14.138389587402344,
|
| 874 |
+
-14.13112735748291,
|
| 875 |
+
-14.163527488708496,
|
| 876 |
+
-14.123567581176758,
|
| 877 |
+
-14.154745101928711,
|
| 878 |
+
-14.1788969039917,
|
| 879 |
+
-14.14689826965332,
|
| 880 |
+
-14.154662132263184,
|
| 881 |
+
-14.143288612365723,
|
| 882 |
+
-14.129490852355957,
|
| 883 |
+
-14.156340599060059,
|
| 884 |
+
-14.181418418884277,
|
| 885 |
+
-14.170750617980957,
|
| 886 |
+
-14.17249584197998,
|
| 887 |
+
-14.18864631652832,
|
| 888 |
+
-14.17213249206543,
|
| 889 |
+
-14.1883544921875,
|
| 890 |
+
-14.208122253417969,
|
| 891 |
+
-14.200791358947754,
|
| 892 |
+
-14.214095115661621,
|
| 893 |
+
-14.184290885925293,
|
| 894 |
+
-14.219131469726562,
|
| 895 |
+
-14.155672073364258,
|
| 896 |
+
-14.200401306152344,
|
| 897 |
+
-14.225457191467285,
|
| 898 |
+
-14.197686195373535,
|
| 899 |
+
-14.205260276794434,
|
| 900 |
+
-14.193597793579102,
|
| 901 |
+
-14.249421119689941,
|
| 902 |
+
-14.176218032836914,
|
| 903 |
+
-14.203721046447754,
|
| 904 |
+
-14.223054885864258,
|
| 905 |
+
-14.188604354858398
|
| 906 |
]
|
| 907 |
}
|
weight/all.pth
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 9424379
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dfd91f9605c65538acabeb9d5650c21119611a9e0493de3e1f300576a9925ec9
|
| 3 |
size 9424379
|