Cristian Gutiérrez

Results 5 comments of Cristian Gutiérrez

Google Colab redirects `localhost` to the VM backend, using `127.0.0.1` solves the issue: ```bash !python3 -m fastchat.serve.controller --host 127.0.0.1 --port 8000 ```

Google Colab redirects `localhost` to the VM backend, using `127.0.0.1` solves the issue: ```bash !python3 -m fastchat.serve.controller --host 127.0.0.1 --port 8000 ```

Hi @merrymercy ! I have a notebook in which I am able to run the FastChat API in Google Colab free tier. As examples I've included the code snippets for...

This keeps happening even though I am passing the 'cpu' parameter: `device = torch.device('cpu')` Is there a way to avoid this error popping off in stderr?

Move the model to CUDA, you are probably using `float 16` which is only implemented for GPUs.