Spaces:
Runtime error
Runtime error
update
Browse files- .gitattributes +1 -0
- downloaded_checkpoints/resunet143_ismir2021_accompaniment_16.8dB_350k_steps.pth +3 -0
- downloaded_checkpoints/resunet143_ismir2021_vocals_8.9dB_350k_steps.pth +3 -0
- downloaded_checkpoints/resunet143_subbtandtime_accompaniment_16.4dB_350k_steps.pth +3 -0
- downloaded_checkpoints/resunet143_subbtandtime_vocals_8.8dB_350k_steps.pth +3 -0
- separate_scripts/download_checkpoints.sh +13 -13
.gitattributes
CHANGED
@@ -27,3 +27,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
27 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
28 |
*.wav filter=lfs diff=lfs merge=lfs -text
|
29 |
example.wav filter=lfs diff=lfs merge=lfs -text
|
|
|
|
27 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
28 |
*.wav filter=lfs diff=lfs merge=lfs -text
|
29 |
example.wav filter=lfs diff=lfs merge=lfs -text
|
30 |
+
downloaded_checkpoints/* filter=lfs diff=lfs merge=lfs -text
|
downloaded_checkpoints/resunet143_ismir2021_accompaniment_16.8dB_350k_steps.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a81ecdb0095ae6bb4433d6b3e4e0a30e57a1fbf5c931c950c20247d14fa1efd5
|
3 |
+
size 461250888
|
downloaded_checkpoints/resunet143_ismir2021_vocals_8.9dB_350k_steps.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0fa735205731b9685c63ce5c83e9469eff934f1c20dfd2260b4182194afedb96
|
3 |
+
size 461250769
|
downloaded_checkpoints/resunet143_subbtandtime_accompaniment_16.4dB_350k_steps.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:db687623d882aa2d145e2ee8cbac4f2063ed606a94bd7c0f2a4b2dcde8c3a0b6
|
3 |
+
size 414047632
|
downloaded_checkpoints/resunet143_subbtandtime_vocals_8.8dB_350k_steps.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7e4384dcc7b7d9df35abaf2563a0b263b9fc43abb32be21c0a2a02c4c1409592
|
3 |
+
size 414046990
|
separate_scripts/download_checkpoints.sh
CHANGED
@@ -5,16 +5,16 @@ DOWNLOADED_CHECKPOINT_DIR="./downloaded_checkpoints"
|
|
5 |
|
6 |
mkdir -p $DOWNLOADED_CHECKPOINT_DIR
|
7 |
|
8 |
-
MODEL_NAME="resunet143_ismir2021_vocals_8.9dB_350k_steps.pth"
|
9 |
-
wget -O "${DOWNLOADED_CHECKPOINT_DIR}/${MODEL_NAME}" "${ZENODO_DIR}/${MODEL_NAME}?download=1"
|
10 |
-
|
11 |
-
MODEL_NAME="resunet143_ismir2021_accompaniment_16.8dB_350k_steps.pth"
|
12 |
-
wget -O "${DOWNLOADED_CHECKPOINT_DIR}/${MODEL_NAME}" "${ZENODO_DIR}/${MODEL_NAME}?download=1"
|
13 |
-
|
14 |
-
ZENODO_DIR="https://zenodo.org/record/5513378/files"
|
15 |
-
|
16 |
-
MODEL_NAME="resunet143_subbtandtime_vocals_8.8dB_350k_steps.pth"
|
17 |
-
wget -O "${DOWNLOADED_CHECKPOINT_DIR}/${MODEL_NAME}" "${ZENODO_DIR}/${MODEL_NAME}?download=1"
|
18 |
-
|
19 |
-
MODEL_NAME="resunet143_subbtandtime_accompaniment_16.4dB_350k_steps.pth"
|
20 |
-
wget -O "${DOWNLOADED_CHECKPOINT_DIR}/${MODEL_NAME}" "${ZENODO_DIR}/${MODEL_NAME}?download=1"
|
|
|
5 |
|
6 |
mkdir -p $DOWNLOADED_CHECKPOINT_DIR
|
7 |
|
8 |
+
# MODEL_NAME="resunet143_ismir2021_vocals_8.9dB_350k_steps.pth"
|
9 |
+
# wget -O "${DOWNLOADED_CHECKPOINT_DIR}/${MODEL_NAME}" "${ZENODO_DIR}/${MODEL_NAME}?download=1"
|
10 |
+
#
|
11 |
+
# MODEL_NAME="resunet143_ismir2021_accompaniment_16.8dB_350k_steps.pth"
|
12 |
+
# wget -O "${DOWNLOADED_CHECKPOINT_DIR}/${MODEL_NAME}" "${ZENODO_DIR}/${MODEL_NAME}?download=1"
|
13 |
+
#
|
14 |
+
# ZENODO_DIR="https://zenodo.org/record/5513378/files"
|
15 |
+
#
|
16 |
+
# MODEL_NAME="resunet143_subbtandtime_vocals_8.8dB_350k_steps.pth"
|
17 |
+
# wget -O "${DOWNLOADED_CHECKPOINT_DIR}/${MODEL_NAME}" "${ZENODO_DIR}/${MODEL_NAME}?download=1"
|
18 |
+
#
|
19 |
+
# MODEL_NAME="resunet143_subbtandtime_accompaniment_16.4dB_350k_steps.pth"
|
20 |
+
# wget -O "${DOWNLOADED_CHECKPOINT_DIR}/${MODEL_NAME}" "${ZENODO_DIR}/${MODEL_NAME}?download=1"
|