Can we use SimpleTransformers and FineTune their pre-trained model, without an NVIDIA Graphic Card? Like I installed CUDA, still it shows:
model = NERModel('bert', 'bert-base-uncased',labels=label,args =args)
~/my_env/lib/python3.8/site-packages/simpletransformers/ner/ner_model.py in __init__(self, model_type, model_name, labels, weight, args, use_cuda, cuda_device, onnx_execution_provider, **kwargs)
281 self.device = torch.device(f"cuda:{cuda_device}")
282 else:
--> 283 raise ValueError(
284 "'use_cuda' set to True when cuda is unavailable."
285 "Make sure CUDA is available or set use_cuda=False."
ValueError: 'use_cuda' set to True when cuda is unavailable. Make sure CUDA is available or set use_cuda=False.