Retrieved with:
MSYS_NO_PATHCONV=1 docker run --rm --entrypoint /bin/bash ghcr.io/coqui-ai/tts -o errexit -o xtrace -c 'tts --help; python3 /root/TTS/server/server.py --help; python3 /root/TTS/bin/train_tts.py --help'
Retrieved with:
MSYS_NO_PATHCONV=1 docker run --rm --entrypoint /bin/bash ghcr.io/coqui-ai/tts -o errexit -o xtrace -c 'tts --help; python3 /root/TTS/server/server.py --help; python3 /root/TTS/bin/train_tts.py --help'
Name format: type/language/dataset/model | |
1: tts_models/multilingual/multi-dataset/your_tts | |
2: tts_models/multilingual/multi-dataset/bark | |
3: tts_models/bg/cv/vits | |
4: tts_models/cs/cv/vits | |
5: tts_models/da/cv/vits | |
6: tts_models/et/cv/vits | |
7: tts_models/ga/cv/vits | |
8: tts_models/en/ek1/tacotron2 | |
9: tts_models/en/ljspeech/tacotron2-DDC |
List of valid properties to query for the switch "--query-gpu": | |
"timestamp" | |
The timestamp of when the query was made in format "YYYY/MM/DD HH:MM:SS.msec". | |
"driver_version" | |
The version of the installed NVIDIA display driver. This is an alphanumeric string. | |
Section about vgpu_driver_capability properties | |
Retrieves information about driver level caps. |
A command-line benchmarking tool. | |
Usage: hyperfine [OPTIONS] <command>... | |
Arguments: | |
<command>... | |
The command to benchmark. This can be the name of an executable, a | |
command line like "grep -i todo" or a shell command like "sleep 0.5 && | |
echo test". The latter is only available if the shell is not | |
explicitly disabled via '--shell=none'. If multiple commands are |
.activitybar { | |
background: green !important; | |
} | |
.action-label { | |
width: 44px !important; | |
height: 40px !important; | |
} | |
.activitybar .action-item.codicon { |
GenX_IR | |
[ | |
add-apt-repository | |
add-shell | |
addgnupghome | |
addgroup | |
addpart | |
adduser | |
agetty | |
applygnupgdefaults |
7-Zip (z) 22.01 (x64) : Copyright (c) 1999-2022 Igor Pavlov : 2022-07-15 | |
64-bit locale=de_DE.UTF-8 Threads:8, ASM | |
Usage: 7zz <command> [<switches>...] <archive_name> [<file_names>...] [@listfile] | |
<Commands> | |
a : Add files to archive | |
b : Benchmark | |
d : Delete files from archive | |
e : Extract files from archive (without using directory names) |
Env variables: | |
MINGW_PACKAGE_PREFIX=mingw-w64-x86_64 | |
MINGW_CHOST=x86_64-w64-mingw32 | |
MINGW_PREFIX=/mingw64 | |
MSYSTEM=MINGW64 | |
CPATH=P:/otherGit/autobuildSuite/local64/include;P:/otherGit/autobuildSuite/msys64/mingw64/include | |
LIBRARY_PATH=P:/otherGit/autobuildSuite/local64/lib;P:/otherGit/autobuildSuite/msys64/mingw64/lib | |
LDFLAGS=-pipe -static-libgcc -static-libstdc++ | |
CFLAGS=-mthreads -mtune=generic -O2 -pipe | |
CPPFLAGS=-D_FORTIFY_SOURCE=0 -D__USE_MINGW_ANSI_STDIO=1 |
#!/usr/bin/env bash | |
set -o errexit -o pipefail -o xtrace | |
cd | |
files= | |
for f in *.avi; do | |
if [[ -z $files ]]; then | |
files=concat:"$HOME/$f" | |
else | |
files="$files|$HOME/$f" |