conda activate tf
# no idea why but had problems with ~ in path.
cd /home/towlesd/Code/tacotron2
mkdir /home/towlesd/OutputDir/
mkdir /home/towlesd/OutputDir/tacotron2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//open window to the lent book. | |
var baseUrl = "https://ofs-" + window.bData["-odread-buid"] + ".listen.overdrive.com" | |
window.bData.spine.forEach(function(x) { console.log("" + baseUrl + "/" + x.path ) } ) | |
var model = { | |
title: window.bData.title, | |
parts: [], | |
}; |
https://nvidia.github.io/OpenSeq2Seq/html/installation.html
git clone https://github.com/NVIDIA/OpenSeq2Seq
cd OpenSeq2Seq
pip install -r requirements.txt
Was getting Error Failed building wheel for mpi4py
fixed with sudo apt install libopenmpi-dev
from https://stackoverflow.com/questions/28440834/error-when-installing-mpi4py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<span class="parent"> | |
<transition name="component-fade" mode="out-in"> | |
<i v-if="!expanded" class="fa fa-chevron-right" aria-hidden="true" :key="1"></i> | |
<i v-else class="fa fa-chevron-right fa-rotate-90" aria-hidden="true" :key="2"></i> | |
</transition> | |
</span> | |
</template> | |
<script> |
OlderNewer