You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, thank you for sharing about this project.
Here, I have some doubts about Ontology Creation-py
prompt_template = PromptTemplate(input_variables=["concepts", "relations","data_properties","InverseProperties","base_onto_class","base_onto_property"], template=template)
content = read_txt(config.get('Paths', 'Concepts_and_relationships_save_path'))
concepts_s_ind = content.find('Concepts:') + len('Concepts:')
concepts_e_ind = content.find('Relationships:')
concepts = content[concepts_s_ind:concepts_e_ind].strip()
First of all, thank you for sharing about this project.
Here, I have some doubts about Ontology Creation-py
prompt_template = PromptTemplate(input_variables=["concepts", "relations","data_properties","InverseProperties","base_onto_class","base_onto_property"], template=template)
content = read_txt(config.get('Paths', 'Concepts_and_relationships_save_path'))
concepts_s_ind = content.find('Concepts:') + len('Concepts:')
concepts_e_ind = content.find('Relationships:')
concepts = content[concepts_s_ind:concepts_e_ind].strip()
Why didn't you use the parameters data_deproperties and inverte_properties
The text was updated successfully, but these errors were encountered: