Skip to content

Commit

Permalink
added VST to DVC
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimecomprendre committed Aug 1, 2024
1 parent 618ab15 commit f31c0ad
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 32 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN wget --no-check-certificate https://www.python.org/ftp/python/3.12.4/Python-
# Delete the unzipped directory and downloaded archive to save space
&& rm -rf Python-3.12.4 Python-3.12.4.tgz \
# Create symlink for python3
&& ln -s /usr/local/bin/python3.12 /usr/local/bin/python3
&& ln -s /usr/local/bin/python3.12 /usr/local/bin/python3 \
&& ln -s /usr/local/bin/python3.12 /usr/local/bin/python

# Set the working directory
Expand Down
1 change: 1 addition & 0 deletions data/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/raw
/processed
/VST
6 changes: 6 additions & 0 deletions data/VST.dvc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
outs:
- md5: 5a5cd90402cf8cc2f98d5992f6a487c3.dir
size: 23987200
nfiles: 1
hash: md5
path: VST
6 changes: 0 additions & 6 deletions data/processed.dvc

This file was deleted.

6 changes: 3 additions & 3 deletions data/raw.dvc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
outs:
- md5: 2dcbe8daf66e7ea8b0e6cf093d76c2e1.dir
size: 1278404546
nfiles: 2533
- md5: d256e119f06c12d2eaa3146f535fe4d9.dir
size: 25641601540
nfiles: 40966
hash: md5
path: raw
42 changes: 21 additions & 21 deletions dvc.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
stages:
# preprocess:
# cmd: python source/preprocess.py
# deps:
# - source/preprocess.py
# - source/utilities/dataset.py
# - data/raw/
# params:
# - preprocess.input_directory
# - preprocess.dry_output_directory
# - preprocess.short_output_directory
# - preprocess.wet_output_directory
# - preprocess.board_chunk_size
# - preprocess.sliding_mean_length
# - preprocess.noise_duration
# - preprocess.num_noises
# - preprocess.plate_reverb_path
# - preprocess.model_batch_size
# - train.input_size
# - general.sample_rate
# outs:
# - data/processed/
preprocess:
cmd: python3 source/preprocess.py
deps:
- source/preprocess.py
- source/utilities/dataset.py
- data/raw/
params:
- preprocess.input_directory
- preprocess.dry_output_directory
- preprocess.short_output_directory
- preprocess.wet_output_directory
- preprocess.board_chunk_size
- preprocess.sliding_mean_length
- preprocess.noise_duration
- preprocess.num_noises
- preprocess.plate_reverb_path
- preprocess.model_batch_size
- train.input_size
- general.sample_rate
outs:
- data/processed/
train:
cmd: python3 source/train.py
deps:
Expand Down
2 changes: 1 addition & 1 deletion params.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ train:
n_inputs: 1
n_bands: 16
latent_dim: 128
n_epochs: 1
n_epochs: 1000
batch_size: 32
kernel_size: 13
n_blocks: 3
Expand Down

0 comments on commit f31c0ad

Please sign in to comment.