Delip Rao

Results 12 comments of Delip Rao

HDF5 is a good option and is already used in many Python projects. On Tue, Sep 22, 2015 at 1:19 PM, John Schulman [email protected] wrote: > Jonathan, I like the...

joining the chorus here, as I noticed `pytorch_lightning` package having the same issue: ``` import watermark from pytorch_lightning import seed_everything if __name__ == '__main__': seed_everything(42) print(watermark.watermark(machine=True, globals_=globals(), iversions=True, python=True)) ```

I tried a different approach of manually downloading the pretrained model and then try loading it via PyTorch, and I hit a different bug for that. ![image](https://user-images.githubusercontent.com/347398/71757757-34b72a00-2e4d-11ea-8bc1-94168652c777.png)

@jcvasquezc were you able to find a workaround for this?

Thanks, @jcvasquezc, @MittalShruti, and @santi-pdp!

I am running into QRNN issues that I've documented [here](https://github.com/salesforce/pytorch-qrnn/issues/26#issuecomment-601949716). Is there a recommended commit of the QRNN code that has worked for others?

@Gram2017/everyone The recipe in [this comment](https://github.com/xiph/rnnoise/issues/8#issuecomment-346947946) shows how to generate the data file for a single wave file. Say I have a bunch of speech_only and noise_only PCM files. How...

@agola11 spotted the error: `llm.agenerate` expects a list of list of messages. Leaving this issue open to provide better error messages. Feel free to close without fixing :)

@daiangan check out [`VectorStoreRetrieverMemory`](https://python.langchain.com/en/latest/modules/memory/types/vectorstore_retriever_memory.html)

> nice! im not super familiar with accerlated stuff. how generic is the get_accelerated_gpt code? @hwchase17 Since I ran into similar issue and I am familiar with this, I left...