Asish Binu Mathew
Asish Binu Mathew
Happens to me too rq version is 1.11.1
yes I am, PS it only happens if when i add a callback function
I ran the test suite and it worked fine, however when I added the call back function it threw error, `import_attribute attribute_owner = getattr(module, attribute_owner_name) AttributeError: module '__main__' has no...
Had the same issue, and this fixed it. Although I changed the trainer code to this but explicitly specifying to use the second GPU `trainer = pl.Trainer(accelerator="gpu", devices=[1], precision=32, callbacks=[logger])`...
Try increasing the shared memory size by running this on the terminal `ulimit -n 16384` + check this issue and the last comment https://github.com/lllyasviel/ControlNet/issues/165#issuecomment-1464726313
Change this last line of code `block.launch(server_name='0.0.0.0')` to `block.launch(server_name='0.0.0.0', share=True) `.
This might work ` opts = ClientOptions().replace(postgrest_client_timeout=60) supabase: Client = create_client(url, key, options=opts) `
Hey @J0 I am not sure. The feature seems to be working fine for setting client options, maybe update the documentation if it's the intended way of setting client options....
@J0 haven't touched that project in a while, will update once I get a chance. @devstein check the previous comment -> https://github.com/supabase-community/supabase-py/issues/376#issuecomment-1702061376
@JackGilmore is this up for grabs?