Edit model card

Para saber como usar el modelo se puede acceder a: https://colab.research.google.com/drive/1c_FscMeAxLf2dlWJPAt26vZSYbH74o1f?usp=sharing

Tambien se puede crear un colab y hacer el codigo siguiente:

from huggingface_hub import hf_hub_download import os import sys file_path = hf_hub_download(repo_id="JonathanEGP/Anonimizador_Ner", filename="Anonimizador_Ner.py") dir_path = os.path.dirname(file_path) sys.path.append(dir_path)

from Anonimizador_Ner import AnonymizationPipeline anonymizer = AnonymizationPipeline() texto = "" resultado = anonymizer(texto) print(resultado['anonymized_text'])

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference API
Unable to determine this model’s pipeline type. Check the docs .