Results 17 comments of Drew

Sure, added. The condition to trigger is when the operands of the compare in `bisect.bisect_left` (specifically: `if a[mid] < x: lo = mid+1`) agree on the first value of the...

Also need to update `def plot_history()`: `hist['mean_squared_error']` -> `hist['mse']`, and same for `val_mse`

Hm, maybe these can be added directly to the `DummyModule` construction, down at `def framework` (line 83 in original).

> Hi there, > > > > Did we use `torchvision` somewhere in the repo? Could you point me to that? > > > > Thanks! > > > >...

I suspect it is more to do with when the user installed the dependencies rather than the order -- I think the breaking change came only in the 0.12.0 release:...

Would you like the version changed to `0.10.0`?

This kfac and tensor2tensor issue is reproducible in my setup -- with a completely fresh virtualenv installation of Magenta. EDIT: I am able to work around it via `pip install...

Hi @xnetcat , thanks for the follow up. 1. No changes have been made to the number of threads. 2. Connection is stable -- this error reproduces on my local...

I think the issue is this line of code in `save.py`: ```python if preload: save_data = [] with concurrent.futures.ThreadPoolExecutor( max_workers=downloader.threads ) as executor: future_to_song = { executor.submit(downloader.search, song): song for...