File size: 673 Bytes
340a6e4 abe7c73 9c2186b abe7c73 e815b78 abe7c73 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
---
license: cc-by-nc-nd-4.0
language:
- es
library_name: transformers
---
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'])
|