https://github.com/moscarde/spacy_model_training_utility
https://github.com/moscarde/spacy_model_training_utility
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/moscarde/spacy_model_training_utility
- Owner: Moscarde
- License: mit
- Created: 2024-09-08T16:36:11.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-20T08:22:16.000Z (8 months ago)
- Last Synced: 2025-02-06T04:52:58.993Z (4 months ago)
- Language: Python
- Size: 302 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# spacy_model_training_utility
## Requisitos
1. Python 3*
2. Flask
3. PyMuPDF## Instalação
```
pip install -r requirements.txt
```## Uso
```
python app.py
```## Output
Para cada documento carregado, é gerado um json com o conteúdo e marcações.```json
{
"content": "Gabriel Moscarde\nRio de Janeiro, 23071160 | (21) 982147469\[email protected] | linkedin.com/in/moscarde/ | github.com/Moscarde\n ... ... ...",
"annotation": [
{
"label": [
"Green"
],
"points": [
{
"start": 0,
"end": 16,
"text": "Gabriel Moscarde"
}
]
},
{
"label": [
"Red"
],
"points": [
{
"start": 182,
"end": 207,
"text": "coleta e análise de dados"
}
]
},
{
"label": [
"Red"
],
"points": [
{
"start": 302,
"end": 310,
"text": "Power BI"
}
]
},
... ... ...```