alexxony
alexxony
> Yeah, Koalas doesn't support `RollingGroupby.apply()` yet. when can i use?? should i use dask instead?
> You can download the dataset from the below link: > https://docs.google.com/forms/d/e/1FAIpQLSdnIxHU-hX_fDC4FSqnTe_BbvF3MR4N1hkIMT0T5SHwcmqP0Q/viewform i downloaded this link from onedrive. but it didnt unzip correctly. can you help me?
> Can you just try to redownload? I have get any issue like this before. i tried to unzip in both windows and ubuntu. But when in windows. it failed...
> I have been working with this function with an other approach, but got the same error when the lower level function **_ecg_quality_zhao2018** used in **ecg_quality**, couldnt detect any R...
def _ecg_quality_pSQI(ecg_cleaned, sampling_rate=1000, window=1024, num_spectrum=[5, 15], dem_spectrum=[5, 40], **kwargs): psd = signal_power(ecg_cleaned, sampling_rate=sampling_rate, frequency_band=[num_spectrum, dem_spectrum], method="welch", normalize=False, window=window, **kwargs) num_power = psd.iloc[0][0] dem_power = psd.iloc[0][1] return num_power / dem_power def...
> This morning I got quite excited by the great [API](https://github.com/berndporr/ECG-GUDB) by @berndporr to access the GUDB database. > > One thing lead to another, I ended up with [this...
> Did you try with VCTK, or LIBRITTS vocoders?, those were trained in multispk conditions: > > [vctk_parallel_wavegan.v1](https://drive.google.com/open?id=1dGTu-B7an2P5sEOepLPjpOaasgaSnLpi) [vctk_parallel_wavegan.v1.long](https://drive.google.com/open?id=1qoocM-VQZpjbv5B-zVJpdraazGcPL0So) [vctk_multi_band_melgan.v2](https://drive.google.com/open?id=17EkB4hSKUEDTYEne-dNHtJT724hdivn4) [vctk_hifigan.v1](https://drive.google.com/open?id=17fu7ukS97m-8StXPc6ltW8a3hr0fsQBP) [libritts_hifigan.v1](https://drive.google.com/open?id=10jBLsjQT3LvR-3GgPZpRvWIWvpGjzDnM) How can I apply ?
> [configs/vits2_vctk_standard.json](https://github.com/p0p4k/vits2_pytorch/blob/1f4f3790568180f8dec4419d5cad5d0877b034bb/configs/vits2_vctk_standard.json#L43) follow that file and change your json to add 'duration_discriminator_type' https://colab.research.google.com/drive/1y_XFXZTcWmV7l0w1anZqfD4zrEdXGwQ5?usp=sharing other error occured. how can i solve that?
> As a start I would suggest you extract embeddings with the model and use them as features to train some classifier, e.g. a SVM. This should give you an...