View Issue Details

IDProjectCategoryView StatusLast Update
0003845CaseTalk ModelerGeneration (SQL, XML, etc)public2025-05-29 12:18
ReporterMarco Wobben Assigned ToMarco Wobben  
PrioritynormalSeverityfeatureReproducibilityhave not tried
Status resolvedResolutionfixed 
PlatformIntelOSWindowsOS Version11
Target Version12.7Fixed in Version14.3.0 
Summary0003845: Generate SpaCy training data
Description

To support NLP with SpaCy, it would be helpful to train the models with facts from FCO-IM. Once trained, the SpaCy modules could be used to parse other body of texts.

Additional Information


import spacy
from spacy.tokens import DocBin

nlp = spacy.blank("en") training_data = [ ("Tokyo Tower is 333m tall.", [(0, 11, "BUILDING")]), ]

the DocBin will store the example documents

db = DocBin() for text, annotations in training_data: doc = nlp(text) ents = [] for start, end, label in annotations: span = doc.char_span(start, end, label=label) ents.append(span) doc.ents = ents db.add(doc) db.to_disk("./train.spacy")

TagsNo tags attached.
CaseTalk Editionunknown

Relationships

related to 0001718 assignedMarco Wobben Support Natural Language Processing (NLP) 

Activities

Marco Wobben

Marco Wobben

2023-02-15 17:09

administrator   ~0004784

This feature is added to the "File\Export.." Menu.

Marco Wobben

Marco Wobben

2025-05-29 12:18

administrator   ~0005568

File\Export added.

Issue History

Date Modified Username Field Change
2023-02-10 11:33 Marco Wobben New Issue
2023-02-10 11:33 Marco Wobben Status new => assigned
2023-02-10 11:33 Marco Wobben Assigned To => Marco Wobben
2023-02-10 11:33 Marco Wobben Relationship added related to 0001718
2023-02-15 17:09 Marco Wobben Status assigned => resolved
2023-02-15 17:09 Marco Wobben Resolution open => fixed
2023-02-15 17:09 Marco Wobben Fixed in Version => 12.7
2023-02-15 17:09 Marco Wobben Note Added: 0004784
2025-05-29 12:18 Marco Wobben Fixed in Version 12.7 => 14.3.0
2025-05-29 12:18 Marco Wobben Note Added: 0005568