ysmu

Results 4 issues of ysmu

It appears that pass-through calls are seeing 2x the actual call count. Is this behavior expected? ```py import httpx import respx with respx.mock as mock: route = respx.get('https://example.com').pass_through() httpx.get('https://example.com') print(f'pass_through()...

bug

### Describe the bug Running `train_vits_tts.py` with multiple GPUs fails with the following exception: ``` Traceback (most recent call last): File "/home/ysmu/miniconda3/envs/yourtts/lib/python3.10/site-packages/trainer/trainer.py", line 1533, in fit self._fit() File "/home/ysmu/miniconda3/envs/yourtts/lib/python3.10/site-packages/trainer/trainer.py", line...

bug

I have a mp3 with the title of just `0` (id3v2 with 01 encoding). I verified the frame data is indeed `\x01\xff\xfe\x30\x00\x00\x00`. However, when I get the title of this...

status: unverified
2.x

I'm currently using `fig.update_xaxes(spikemode='across+marker')` with `fig.update_traces(xaxis='x2')`, as suggested [here](https://github.com/plotly/plotly.py/issues/1677#issuecomment-514661015), to draw spike a line across subplots. It was working great until I added some horizontal lines to my chart. ###...