Yet Another Tools for Audio deep learning
Project description
yata[WIP]
Yet Another Tools for Audio deep learning(for myself).
pip install libyata
Usage
(NEW!)As command line batch running tools
- usage
args:yata glob_pattern --command command_pattern --replace_from foo --replace_to bar --j NUM_PROCESSES --dry_run True/False- --command: set command pattern.
with placeholder of {i} as input file and {o} as output file - --j number of process to run
- --dry_run: only show command
to be runbut not actual running it.
for example: "mv 1.wav 1_backup.wav"
- --command: set command pattern.
- examples
-
batch rename example:
On terminal, just type this to see guide:yata_guide renameyou will get a guide:
yata './**/*' --command 'mv {i} {o}' --replace_from .aac --replace_to .wav --j 4 --dry_run TrueYou can run it directly and will show you the dry running command
to be run:yata date:20210418_161624, total_files:56, dry_run=True mv ./testdir/1.wav ./testdir/1.aac mv ./testdir/2i/2.wav ./testdir/2i/2.aac mv ./testdir_16k/1.wav ./testdir_16k/1.aac mv ./testdir_16k/2i/2.wav ./testdir_16k/2i/2.aac mv ./yata/61-70968-0002.wav ./yata/61-70968-0002.aac 100%|██████████████████████████████████| 55/55 [00:00<00:00, 37724.73it/s] yata done:20210418_161705, total_files:56, dry_run=TrueYou can modify it as your will and run it, remember to remove "--dry_run True":
yata './**/*' --command 'mv {i} {o}' --replace_from .wav --replace_to _backup.wav --j 4 -
batch resample example:
Typeyata_guide resampleto get this guide:
yata './**/*' --command 'ffmpeg -hide_banner -loglevel quiet -i {i} -f wav -ar 16000 -acodec pcm_s16le -ac 1 {o} -y' --replace_from .aac --replace_to .wav --j 10 --dry_run True
-
- with pythonic support
- tqdm
- multiprocessing
- auto new_dir
As python package
import yata
-
handy tools
- yata.utils.run():
No more ArgumentParser!!
you can pass and update any parameter with:
with code like:python test.py --a 2 --lr 0.01
you can acess params like HParams:import yata default_hp = {"a":1,"b":2} args = yata.util.run(default_hp)print(args.a, args.b) # acess default params print(args.lr) # acess newly add params from CLI - yata.utils.new_dir:
Make directory like this./file_a/tag/1/with:new_dir("file_a", "tag", 1) - yata.utils.backup_code:
Backup all your *.py(optional) to a zip file, eg. backup code for every experiments before running. - yata.utils.get_current_date: Get date as string
- yata.utils.merge_parts: merge csv files
- merge_parts(pattern, output_name="", sep=",")
- yata.utils.run():
-
Tensorflow alternatives
- yata.utils.HParams:
An alternative to tf.contrib.training.HParams without Tensorflow dependency - yata.utils.to_categorical:
An alternative to tf.keras.utils.to_categorical without Tensorflow & keras dependency
- yata.utils.HParams:
-
data augmentation
-
feature extraction
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file libyata-0.7.8.tar.gz.
File metadata
- Download URL: libyata-0.7.8.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4bcf77ed6ae0ac39215953c0563db5507f241c6b3d4e82fe9d43c2cb28b81e6
|
|
| MD5 |
86111067e49e615228e86bc06a64deea
|
|
| BLAKE2b-256 |
1df36c9156336575552333c1dc336a0e1fdb93fbcff0b49e1b200f48bb5c510b
|
File details
Details for the file libyata-0.7.8-py3-none-any.whl.
File metadata
- Download URL: libyata-0.7.8-py3-none-any.whl
- Upload date:
- Size: 30.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88cc56b4ad7d3faa8924d31e66c6ae3eb8c354f54d3ba772a0e8f46bbb6f59de
|
|
| MD5 |
a225277d38df64f64204972aa369862b
|
|
| BLAKE2b-256 |
886ba14d088ec333f4d638a9d276d69e2f84bdf451d3a109cb70b654ef2869cb
|