christopher11

Results 2 comments of christopher11

You have to change these lambda functions. from ``` 'is_null': lambda f: f is None, 'is_not_null': lambda f: f is not None, ``` to ``` 'is_null': lambda f: f.is_(None), 'is_not_null':...

> _🤖_ > > Hello, > > Thank you for reaching out. It seems like you're trying to use the GPU with the CTransformers library in LangChain, but it's not...