Ravindra Marella

Results 63 comments of Ravindra Marella

I noticed that the `gpt_tokenize()` function doesn't handle special tokens properly due to two issues: 1. It creates regex without escaping special characters in tokens, so it doesn't work for...

I haven't used react-native or expo but it looks like it is possible to import SVGs directly using [`react-native-svg-transformer`](https://github.com/kristerkari/react-native-svg-transformer#readme) library. See expo [docs](https://docs.expo.dev/ui-programming/using-svgs/#converting-svg-files-using-a-babel-transformer). Once you install and configure `react-native-svg-transformer` library...

Hi, to fix the error you are getting, you may have to update langchain: `pip install 'langchain>=0.0.208'` Also this library is outdated. Please use [ctransformers](https://github.com/marella/ctransformers) library which supports more models...

Hi, it is still there https://www.npmjs.com/package/@material-symbols/svg-400 Please try installing the latest version: ```sh yarn add @material-symbols/svg-400@latest ```

Hi, You should use `em` not `rem` to change size by font size as mentioned [here](https://github.com/marella/material-symbols/tree/main/svg/400#styling): ```css svg { width: 1em; height: 1em; fill: currentColor; } ```

Are you using the latest version of material-symbols? Similar [issue](https://github.com/marella/material-symbols/issues/5) used to be present in older versions (< 0.4.0) due to SVGs missing viewBox property.

Sorry for the late response. I think SVGR uses SVGO under the hood which removes viewBox by default. You can disable `removeViewBox` plugin in your SVGO config. Please see SVGO...

Can you please share the OS version. Also please run the following command and share its output: ```py ldd --version ``` If you are running it on an EC2 instance,...

Hi @TheBloke, I got busy with some personal stuff so wasn't able to release updates. I already have some changes in my local that I was planning to release last...

Please update your [NVIDIA Drivers](https://www.nvidia.com/download/index.aspx) and try again.