This file contains hidden or 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
K_step: 1000 | |
accumulate_grad_batches: 1 | |
audio_num_mel_bins: 128 | |
audio_sample_rate: 44100 | |
binarization_args: | |
shuffle: false | |
with_align: true | |
with_f0: true | |
with_hubert: true | |
with_spk_embed: false |
This file contains hidden or 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
[...document.querySelectorAll("a[href]")].filter(l => (l.href.includes('pth') || l.href.includes('safetensor')) && l.href.includes('resolve')).map(l => l.href).join('\n') |
This file contains hidden or 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
docker run -v ${pwd}:/vids bennetimo/shrinkwrap --input-extension MOD --ffmpeg-opts crf=22,preset=fast /vids |
This file contains hidden or 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
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity >=0.4.22 <0.9.0; | |
library TestsAccounts { | |
function getAccount(uint index) pure public returns (address) { | |
address[15] memory accounts; | |
accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4; | |
accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2; |
This file contains hidden or 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
const lightBulbMachine = Machine( | |
{ | |
id: 'lightBulb', | |
initial: 'unlit', | |
states: { | |
lit: { | |
on: { | |
BREAK: 'broken', | |
TOGGLE: 'unlit', | |
}, |
This file contains hidden or 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
int main() | |
{ | |
int i, n; | |
n = 5; | |
/* Inicializa la semilla */ |