Open robsyc opened 1 week ago
For people trying to get the model running locally on CPU, it might be beneficial to update the instructions in README.md to:
README.md
model.float() if device.type=='cpu' else model.half()
Rather than
model.full() if device=='cpu' else model.half()
The latter causes an exception
For people trying to get the model running locally on CPU, it might be beneficial to update the instructions in
README.md
to:model.float() if device.type=='cpu' else model.half()
Rather than
model.full() if device=='cpu' else model.half()
The latter causes an exception