Instructions to use DIACDE/NER_LEIS with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- spaCy
How to use DIACDE/NER_LEIS with spaCy:
!pip install https://huggingface.co/DIACDE/NER_LEIS/resolve/main/NER_LEIS-any-py3-none-any.whl # Using spacy.load(). import spacy nlp = spacy.load("NER_LEIS") # Importing as module. import NER_LEIS nlp = NER_LEIS.load() - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -23,7 +23,7 @@ Desenvolvido pela **Diretoria de Inteligência Artificial, Ciência de Dados e E
|
|
| 23 |
Para instalar todas as dependências necessárias, execute o seguinte comando:
|
| 24 |
|
| 25 |
```bash
|
| 26 |
-
pip install
|
| 27 |
```
|
| 28 |
|
| 29 |
## 2. Carregamento do Modelo:
|
|
|
|
| 23 |
Para instalar todas as dependências necessárias, execute o seguinte comando:
|
| 24 |
|
| 25 |
```bash
|
| 26 |
+
pip install spacy
|
| 27 |
```
|
| 28 |
|
| 29 |
## 2. Carregamento do Modelo:
|