Ling Li
Ling Li
Yes, that does indeed do the trick. I can add some documentation for this, if it will be useful for future users? Perhaps a new forms.rst ?
I had a similar problem, so I manually pointed the path of mypy in pycharm settings like this:  It seems like the auto-detect wasn't working (maybe confusing the '\'...
alternatively you could resolve using this: ``` revision = "fp16" model_path = "runwayml/stable-diffusion-v1-5" # add this into your StableDiffusionWalkPipeline(): vae=AutoencoderKL.from_pretrained( model_path, subfolder="vae", revision=revision, torch_dtype=torch_dtype ), ```
``` llm = GPT4All(model=gpt4, n_ctx=2048, n_threads=8, callback_manager=callback_manager, verbose=True) ```
hi, I was looking to add an additional function that could be passed to the SQLDatabaseChain. The idea being that this function is passed the generated sql and could sanity...
This sounds like an interesting idea. Just checking on the openscad command line api: [openscad api] (https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Using_OpenSCAD_in_a_command_line_environment) and it would be fairly straight foward to create a class to wrap...
If it helps, I have successfully used: `sentence-transformers/all-mpnet-base-v2` as an alternative to the OpenAI `text-embedding-ada-002`
I can confirm Tuned-7B works on my A6000 Ada / 48Gb GPU :)
for anyone reaching here,you can do this to quickly switch to a previous version of CC/GCC: export CXX="/usr/bin/g++-12" export CC="/usr/bin/gcc-12"
Apologises for the poor previous release. Just a little swamped with other things right now, so I will try to amend with corrected version. PR to resolve this would be...