Shrivu Shankar

Results 31 comments of Shrivu Shankar

Just ran into this, one possible workaround is to just remove it from the search space. ```python from tpot.config.classifier import classifier_config_dict new_config = classifier_config_dict.copy() del new_config['sklearn.svm.LinearSVC'] clf = tpot.TPOTClassifier(config_dict=new_config) ```

Added a script that might work here: https://github.com/runwayml/stable-diffusion/issues/27

Not very clean or secure but this'll work and can be aliased. Just change **PASSWORD_HERE**. ``` $ python -c "import authenticator as a, os; (lambda cd: print(a.hotp.HOTP().generate_code_from_time(cd.shared_secret(), code_length=cd.password_length(), period=cd.period())[0]))(a.data.ClientFile('PASSWORD_HERE').load(os.path.expanduser('~/.authenticator/authenticator.data'))[0])" 012345...

An example is in rnn.py

You can add the cell: ``` !wget https://raw.githubusercontent.com/openai/glide-text2im/main/notebooks/grass.png ```

Hey @FreshImmuc, high-level setup is: 1. Create a Twilio account 2. Buy a phone number 3. Go to `Phone Numbers` > `Manage` > `Active Numbers` > `Configure` and set the...

For getting the ngrok server, you can just do set it up here: https://ngrok.com/ with `ngrok http `

Hopefully, most of these should be fixed. @Abe-Telo you still need help setting this up?

This should be totally possible by implementing a new `TTSClient`. Elevenlabs is way better than Google default but havent had a chance to implement this.

Potentially by using the streaming part of the API. But it'll be tricky since this library doesn't support streaming from GPT to the TTS object (you'd need to add it).