feat: update unstructured to ontology notebook and cleanup

This commit is contained in:
KaifAhmad1
2025-12-21 17:26:54 +05:30
parent a9bd3be689
commit 409e8c3d5c
2 changed files with 1083 additions and 19 deletions
File diff suppressed because it is too large Load Diff
+21
View File
@@ -0,0 +1,21 @@
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix ont: <https://semantica.dev/ontology/> .
<https://semantica.dev/ontology/> a owl:Ontology ;
rdfs:label "QuantumOntologyNLP" ;
owl:versionInfo "1.0" .
<> a owl:Class ;
rdfs:label "Org" .
rdfs:comment "Class representing org entities" .
<> a owl:Class ;
rdfs:label "Person" .
rdfs:comment "Class representing person entities" .
<> a owl:Class ;
rdfs:label "Gpe" .
rdfs:comment "Class representing gpe entities" .