Hi, I’m working on a project that involves extracting the names of drugs from medical text using Natural Entity Recognition (NER). While I found some promising solutions using spaCy, my preference is to work within the Rust ecosystem.
After some research, I came across the Candles library and its potential for handling machine learning tasks in Rust. However, most of the examples and documentation seem to focus on higher-level tasks, such as working with large language models (LLMs), rather than specific applications like NER.
My question is: How can I use Candles for NER tasks, specifically to identify drug names in medical texts?
Thanks