From: <hee...@us...> - 2010-08-20 09:02:19
|
Revision: 2265 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=2265&view=rev Author: heeroyuy Date: 2010-08-20 09:02:10 +0000 (Fri, 20 Aug 2010) Log Message: ----------- added ontology for mammographic masses Added Paths: ----------- trunk/src/dl-learner/org/dllearner/examples/Mammographic.java trunk/test/mammographic/ trunk/test/mammographic/files/ trunk/test/mammographic/files/mammographic_masses.data trunk/test/mammographic/mammographic.owl trunk/test/mammographic/train.conf Added: trunk/src/dl-learner/org/dllearner/examples/Mammographic.java =================================================================== --- trunk/src/dl-learner/org/dllearner/examples/Mammographic.java (rev 0) +++ trunk/src/dl-learner/org/dllearner/examples/Mammographic.java 2010-08-20 09:02:10 UTC (rev 2265) @@ -0,0 +1,347 @@ +package org.dllearner.examples; + +import java.io.File; +import java.io.FileNotFoundException; +import java.util.HashMap; +import java.util.LinkedList; +import java.util.List; +import java.util.Scanner; +import java.util.Set; +import java.util.TreeSet; + +import org.dllearner.core.owl.Axiom; +import org.dllearner.core.owl.ClassAssertionAxiom; +import org.dllearner.core.owl.DatatypeProperty; +import org.dllearner.core.owl.DatatypePropertyAssertion; +import org.dllearner.core.owl.DoubleDatatypePropertyAssertion; +import org.dllearner.core.owl.Individual; +import org.dllearner.core.owl.KB; +import org.dllearner.core.owl.NamedClass; +import org.dllearner.core.owl.ObjectProperty; +import org.dllearner.core.owl.ObjectPropertyAssertion; +import org.dllearner.core.owl.SubClassAxiom; +import org.dllearner.parser.KBParser; +import org.dllearner.parser.ParseException; +import org.dllearner.reasoning.OWLAPIReasoner; +import org.dllearner.utilities.Files; +import org.dllearner.utilities.Helper; +import org.semanticweb.owlapi.model.IRI; + +public class Mammographic { + + private static IRI ontologyIRI = IRI + .create("http://dl-learner.org/mammographic"); + private static final String fileName = "test/mammographic/files/mammographic_masses.data"; + private static HashMap<String, String> shapes; + private static HashMap<String, String> margines; + private static HashMap<String, String> densities; + private static HashMap<String, Integer> patients = new HashMap<String, Integer>(); + private static List<Axiom> axioms = new LinkedList<Axiom>(); + private static Set<String> measures = new TreeSet<String>(); + private static Set<String> shape = new TreeSet<String>(); + private static Set<String> margin = new TreeSet<String>(); + private static Set<String> density = new TreeSet<String>(); + + public static void main(String agrs[]) throws FileNotFoundException, ParseException { + Scanner input = new Scanner(new File(fileName), "UTF-8"); + File owlFile = new File("test/mammographic/mammographic.owl"); + long startTime, duration; + String time; + createShapeMapping(); + createMarginMapping(); + createDensityMapping(); + setMeasures(); + KB kb = new KB(); + + NamedClass atomClass = getAtomicConcept("Measure"); + for (String measure : measures) { + NamedClass elClass = getAtomicConcept(measure); + SubClassAxiom sc = new SubClassAxiom(elClass, atomClass); + kb.addAxiom(sc); + } + + NamedClass subClass = getAtomicConcept("Shape"); + for (String shapes : shape) { + NamedClass elClass = getAtomicConcept(shapes); + SubClassAxiom sc = new SubClassAxiom(elClass, subClass); + kb.addAxiom(sc); + } + + NamedClass subsClass = getAtomicConcept("Margin"); + for (String margines : margin) { + NamedClass elClass = getAtomicConcept(margines); + SubClassAxiom sc = new SubClassAxiom(elClass, subsClass); + kb.addAxiom(sc); + } + + NamedClass subClasses = getAtomicConcept("Density"); + for (String densities : density) { + NamedClass elClass = getAtomicConcept(densities); + SubClassAxiom sc = new SubClassAxiom(elClass, subClasses); + kb.addAxiom(sc); + } + + String kbString = generateDomainAndRangeForObjectProperties(); + KB kb2 = KBParser.parseKBFile(kbString); + kb.addKB(kb2); + + System.out.print("Reading in mammographic files ... "); + startTime = System.nanoTime(); + // create subclasses of atom + int i = 0; + while ( input.hasNextLine() ) { + String nextLine = input.next(); + String biRads = nextLine.substring(0, nextLine.indexOf(",")); + nextLine = nextLine.replaceFirst(biRads + ",", ""); + String age = nextLine.substring(0, nextLine.indexOf(",")); + nextLine = nextLine.replaceFirst(age + ",", ""); + String shape = nextLine.substring(0, nextLine.indexOf(",")); + nextLine = nextLine.replaceFirst(shape + ",", ""); + shape = shapes.get(shape); + String margin = nextLine.substring(0, nextLine.indexOf(",")); + nextLine = nextLine.replaceFirst(margin + ",", ""); + margin = margines.get(margin); + String density = nextLine.substring(0, nextLine.indexOf(",")); + nextLine = nextLine.replaceFirst(density + ",", ""); + density = densities.get(density); + String malignant = nextLine; + List<Axiom> axioms = mapClauses(biRads, age, shape, margin, density, malignant, i); + for (Axiom axiom : axioms) + kb.addAxiom(axiom); + + i++; + } + duration = System.nanoTime() - startTime; + time = Helper.prettyPrintNanoSeconds(duration, false, false); + System.out.println("OK (" + time + ")."); + + // writing generated knowledge base + System.out.print("Writing OWL file ... "); + startTime = System.nanoTime(); + OWLAPIReasoner.exportKBToOWL(owlFile, kb, ontologyIRI); + duration = System.nanoTime() - startTime; + time = Helper.prettyPrintNanoSeconds(duration, false, false); + System.out.println("OK (" + time + ")."); + + // generating second conf file + System.out.print("Generating conf file ... "); + File confTrainFile = new File("test/mammographic/train.conf"); + Files.clearFile(confTrainFile); + generateConfFile(confTrainFile); + generateExamples(confTrainFile); + duration = System.nanoTime() - startTime; + time = Helper.prettyPrintNanoSeconds(duration, false, false); + System.out.println("OK (" + time + ")."); + System.out.println("Finished"); + } + + // create chemical element list + private static void createShapeMapping() { + shapes = new HashMap<String, String>(); + shapes.put("0", "unknown"); + shapes.put("1", "round"); + shapes.put("2", "oval"); + shapes.put("3", "lobular"); + shapes.put("4", "irregular"); + + } + + // create chemical element list + private static void createMarginMapping() { + margines = new HashMap<String, String>(); + margines.put("0", "unknown"); + margines.put("1", "circumscribed"); + margines.put("2", "microlobulated"); + margines.put("3", "obscured"); + margines.put("4", "ill-defined"); + margines.put("5", "spiculated"); + + } + + // create chemical element list + private static void createDensityMapping() { + densities = new HashMap<String, String>(); + densities.put("0", "unknown"); + densities.put("1", "high"); + densities.put("2", "iso"); + densities.put("3", "low"); + densities.put("4", "fat-containing"); + + } + + private static List<Axiom> mapClauses(String bi, String age, String shape, String margin, String density, String malignant, int i) { + + + ClassAssertionAxiom cmpAxiom = getConceptAssertion("Patient", + "Patient" + i); + axioms.add(cmpAxiom); + + double biRads = Double + .parseDouble(bi); + + DatatypePropertyAssertion dpa = getDoubleDatatypePropertyAssertion( + "Patient"+i, "hasBiRads", biRads); + axioms.add(dpa); + + double agePatient = Double + .parseDouble(age); + + DatatypePropertyAssertion dpb = getDoubleDatatypePropertyAssertion( + "Patient"+i, "hasAge", agePatient); + axioms.add(dpb); + + ObjectPropertyAssertion sa = getRoleAssertion("hasShape", + "Patient" + i, shape); + axioms.add(sa); + + ClassAssertionAxiom compAxiom = getConceptAssertion(shape, + shape); + axioms.add(compAxiom); + + ObjectPropertyAssertion ma = getRoleAssertion("hasMargin", + "Patient" + i, margin); + axioms.add(ma); + + ClassAssertionAxiom maAxiom = getConceptAssertion(margin, + margin); + axioms.add(maAxiom); + + ObjectPropertyAssertion ca = getRoleAssertion("hasDensity", + "Patient" + i, density); + axioms.add(ca); + + ClassAssertionAxiom denAxiom = getConceptAssertion(density, + density); + axioms.add(denAxiom); + + patients.put("Patient" + i, new Integer(malignant)); + + return axioms; + } + + private static NamedClass getAtomicConcept(String name) { + return new NamedClass(ontologyIRI + "#" + name); + } + + private static ClassAssertionAxiom getConceptAssertion(String concept, + String i) { + Individual ind = getIndividual(i); + NamedClass c = getAtomicConcept(concept); + return new ClassAssertionAxiom(c, ind); + } + + private static Individual getIndividual(String name) { + return new Individual(ontologyIRI + "#" + name); + } + + private static ObjectPropertyAssertion getRoleAssertion(String role, + String i1, String i2) { + Individual ind1 = getIndividual(i1); + Individual ind2 = getIndividual(i2); + ObjectProperty ar = getRole(role); + return new ObjectPropertyAssertion(ar, ind1, ind2); + } + + private static ObjectProperty getRole(String name) { + return new ObjectProperty(ontologyIRI + "#" + name); + } + + private static void generateConfFile(File file) { + String confHeader = "import(\"mammographic.owl\");\n\n"; + confHeader += "reasoner = fastInstanceChecker;\n"; + confHeader += "algorithm = refexamples;\n"; + confHeader += "refexamples.noisePercentage = 5;\n"; + confHeader += "refexamples.startClass = " + getURI2("Patient") + ";\n"; + confHeader += "refexamples.writeSearchTree = false;\n"; + confHeader += "refexamples.searchTreeFile = \"log/mammographic/searchTree.log\";\n"; + confHeader += "\n"; + Files.appendFile(file, confHeader); + } + + private static void generateExamples(File file) { + StringBuffer content = new StringBuffer(); + Set<String> keys = patients.keySet(); + for(String key: keys) { + Integer subsValue = patients.get(key); + if(subsValue == 1) { + content.append("+\"" + getIndividual(key) + "\"\n"); + } else { + content.append("-\"" + getIndividual(key) + "\"\n"); + } + } + Files.appendFile(file, content.toString()); + } + + private static String getURI(String name) { + return ontologyIRI + "#" + name; + } + + // returns URI including quotationsmark (need for KBparser) + private static String getURI2(String name) { + return "\"" + getURI(name) + "\""; + } + + private static void setMeasures() { + measures.add("Density"); + measures.add("Margin"); + measures.add("Shape"); + + shape.add("unknown"); + shape.add("round"); + shape.add("oval"); + shape.add("lobular"); + shape.add("irregular"); + + margin.add("unknown"); + margin.add("circumscribed"); + margin.add("microlobulated"); + margin.add("obscured"); + margin.add("ill-defined"); + margin.add("spiculated"); + + density.add("unknown"); + density.add("high"); + density.add("iso"); + density.add("low"); + density.add("fat-containing"); + } + + private static DoubleDatatypePropertyAssertion getDoubleDatatypePropertyAssertion( + String individual, String datatypeProperty, double value) { + Individual ind = getIndividual(individual); + DatatypeProperty dp = getDatatypeProperty(datatypeProperty); + return new DoubleDatatypePropertyAssertion(dp, ind, value); + } + + private static DatatypeProperty getDatatypeProperty(String name) { + return new DatatypeProperty(ontologyIRI + "#" + name); + } + + private static String generateDomainAndRangeForObjectProperties() { + String kbString = "OPDOMAIN(" + getURI2("hasDensity") + ") = " + + getURI2("Patient") + ".\n"; + kbString += "OPRANGE(" + getURI2("hasDensity") + ") = " + getURI2("Density") + + ".\n"; + + kbString += "OPDOMAIN(" + getURI2("hasShape") + ") = " + + getURI2("Patient") + ".\n"; + kbString += "OPRANGE(" + getURI2("hasShape") + ") = " + getURI2("Shape") + + ".\n"; + + kbString += "OPDOMAIN(" + getURI2("hasMargin") + ") = " + + getURI2("Patient") + ".\n"; + kbString += "OPRANGE(" + getURI2("hasMargin") + ") = " + getURI2("Margin") + + ".\n"; + + kbString += "DPDOMAIN(" + getURI2("hasAge") + ") = " + + getURI2("Patient") + ".\n"; + kbString += "DPRANGE(" + getURI2("hasAge") + ") = DOUBLE.\n"; + + kbString += "DPDOMAIN(" + getURI2("hasBiRads") + ") = " + + getURI2("Patient") + ".\n"; + kbString += "DPRANGE(" + getURI2("hasBiRads") + ") = DOUBLE.\n"; + + return kbString; + } + +} Added: trunk/test/mammographic/files/mammographic_masses.data =================================================================== --- trunk/test/mammographic/files/mammographic_masses.data (rev 0) +++ trunk/test/mammographic/files/mammographic_masses.data 2010-08-20 09:02:10 UTC (rev 2265) @@ -0,0 +1,961 @@ +5,67,3,5,3,1 +4,43,1,1,0,1 +5,58,4,5,3,1 +4,28,1,1,3,0 +5,74,1,5,0,1 +4,65,1,0,3,0 +4,70,0,0,3,0 +5,42,1,0,3,0 +5,57,1,5,3,1 +5,60,0,5,1,1 +5,76,1,4,3,1 +3,42,2,1,3,1 +4,64,1,0,3,0 +4,36,3,1,2,0 +4,60,2,1,2,0 +4,54,1,1,3,0 +3,52,3,4,3,0 +4,59,2,1,3,1 +4,54,1,1,3,1 +4,40,1,0,0,0 +0,66,0,0,1,1 +5,56,4,3,1,1 +4,43,1,0,0,0 +5,42,4,4,3,1 +4,59,2,4,3,1 +5,75,4,5,3,1 +2,66,1,1,0,0 +5,63,3,0,3,0 +5,45,4,5,3,1 +5,55,4,4,3,0 +4,46,1,5,2,0 +5,54,4,4,3,1 +5,57,4,4,3,1 +4,39,1,1,2,0 +4,81,1,1,3,0 +4,77,3,0,0,0 +4,60,2,1,3,0 +5,67,3,4,2,1 +4,48,4,5,0,1 +4,55,3,4,2,0 +4,59,2,1,0,0 +4,78,1,1,1,0 +4,50,1,1,3,0 +4,61,2,1,0,0 +5,62,3,5,2,1 +5,44,2,4,0,1 +5,64,4,5,3,1 +4,23,1,1,0,0 +2,42,0,0,4,0 +5,67,4,5,3,1 +4,74,2,1,2,0 +5,80,3,5,3,1 +4,23,1,1,0,0 +4,63,2,1,0,0 +4,53,0,5,3,1 +4,43,3,4,0,0 +4,49,2,1,1,0 +5,51,2,4,0,0 +4,45,2,1,0,0 +5,59,2,0,0,1 +5,52,4,3,3,1 +5,60,4,3,3,1 +4,57,2,5,3,0 +3,57,2,1,0,0 +5,74,4,4,3,1 +4,25,2,1,0,0 +4,49,1,1,3,0 +5,72,4,3,0,1 +4,45,2,1,3,0 +4,64,2,1,3,0 +4,73,2,1,2,0 +5,68,4,3,3,1 +5,52,4,5,3,0 +5,66,4,4,3,1 +5,70,0,4,0,1 +4,25,1,1,3,0 +5,74,1,1,2,1 +4,64,1,1,3,0 +5,60,4,3,2,1 +5,67,2,4,1,0 +4,67,4,5,3,0 +5,44,4,4,2,1 +3,68,1,1,3,1 +4,57,0,4,1,0 +5,51,4,0,0,1 +4,33,1,0,0,0 +5,58,4,4,3,1 +5,36,1,0,0,0 +4,63,1,1,0,0 +5,62,1,5,3,1 +4,73,3,4,3,1 +4,80,4,4,3,1 +4,67,1,1,0,0 +5,59,2,1,3,1 +5,60,1,0,3,0 +5,54,4,4,3,1 +4,40,1,1,0,0 +4,47,2,1,0,0 +5,62,4,4,3,0 +4,33,2,1,3,0 +5,59,2,0,0,0 +4,65,2,0,0,0 +4,58,4,4,0,0 +4,29,2,0,0,0 +4,58,1,1,0,0 +4,54,1,1,0,0 +4,44,1,1,0,1 +3,34,2,1,0,0 +4,57,1,1,3,0 +5,33,4,4,0,1 +4,45,4,4,3,0 +5,71,4,4,3,1 +5,59,4,4,2,0 +4,56,2,1,0,0 +4,40,3,4,0,0 +4,56,1,1,3,0 +4,45,2,1,0,0 +4,57,2,1,2,0 +5,55,3,4,3,1 +5,84,4,5,3,0 +5,51,4,4,3,1 +4,43,1,1,0,0 +4,24,2,1,2,0 +4,66,1,1,3,0 +5,33,4,4,3,0 +4,59,4,3,2,0 +4,76,2,3,0,0 +4,40,1,1,0,0 +4,52,0,4,0,0 +5,40,4,5,3,1 +5,67,4,4,3,1 +5,75,4,3,3,1 +5,86,4,4,3,0 +4,60,2,0,0,0 +5,66,4,4,3,1 +5,46,4,5,3,1 +4,59,4,4,3,1 +5,65,4,4,3,1 +4,53,1,1,3,0 +5,67,3,5,3,1 +5,80,4,5,3,1 +4,55,2,1,3,0 +4,48,1,1,0,0 +4,47,1,1,2,0 +4,50,2,1,0,0 +5,62,4,5,3,1 +5,63,4,4,3,1 +4,63,4,0,3,1 +4,71,4,4,3,1 +4,41,1,1,3,0 +5,57,4,4,4,1 +5,71,4,4,4,1 +4,66,1,1,3,0 +4,47,2,4,2,0 +3,34,4,4,3,0 +4,59,3,4,3,0 +5,55,2,0,0,1 +4,51,0,0,3,0 +4,62,2,1,0,0 +4,58,4,0,3,1 +5,67,4,4,3,1 +4,41,2,1,3,0 +4,23,3,1,3,0 +4,53,0,4,3,0 +4,42,2,1,3,0 +5,87,4,5,3,1 +4,68,1,1,3,1 +4,64,1,1,3,0 +5,54,3,5,3,1 +5,86,4,5,3,1 +4,21,2,1,3,0 +4,39,1,1,0,0 +4,53,4,4,3,0 +4,44,4,4,3,0 +4,54,1,1,3,0 +5,63,4,5,3,1 +4,62,2,1,0,0 +4,45,2,1,2,0 +5,71,4,5,3,0 +5,49,4,4,3,1 +4,49,4,4,3,0 +5,66,4,4,4,0 +4,19,1,1,3,0 +4,35,1,1,2,0 +4,71,3,3,0,1 +5,74,4,5,3,1 +5,37,4,4,3,1 +4,67,1,0,3,0 +5,81,3,4,3,1 +5,59,4,4,3,1 +4,34,1,1,3,0 +5,79,4,3,3,1 +5,60,3,1,3,0 +4,41,1,1,3,1 +4,50,1,1,3,0 +5,85,4,4,3,1 +4,46,1,1,3,0 +5,66,4,4,3,1 +4,73,3,1,2,0 +4,55,1,1,3,0 +4,49,2,1,3,0 +3,49,4,4,3,0 +4,51,4,5,3,1 +2,48,4,4,3,0 +4,58,4,5,3,0 +5,72,4,5,3,1 +4,46,2,3,3,0 +4,43,4,3,3,1 +0,52,4,4,3,0 +4,66,2,1,0,0 +4,46,1,1,1,0 +4,69,3,1,3,0 +2,59,1,1,0,1 +5,43,2,1,3,1 +5,76,4,5,3,1 +4,46,1,1,3,0 +4,59,2,4,3,0 +4,57,1,1,3,0 +5,43,4,5,0,0 +3,45,2,1,3,0 +3,43,2,1,3,0 +4,45,2,1,3,0 +5,57,4,5,3,1 +5,79,4,4,3,1 +5,54,2,1,3,1 +4,40,3,4,3,0 +5,63,4,4,3,1 +2,55,1,0,1,0 +4,52,2,1,3,0 +4,38,1,1,3,0 +3,72,4,3,3,0 +5,80,4,3,3,1 +5,76,4,3,3,1 +4,62,3,1,3,0 +5,64,4,5,3,1 +5,42,4,5,3,0 +3,60,0,3,1,0 +4,64,4,5,3,0 +4,63,4,4,3,1 +4,24,2,1,2,0 +5,72,4,4,3,1 +4,63,2,1,3,0 +4,46,1,1,3,0 +3,33,1,1,3,0 +5,76,4,4,3,1 +4,36,2,3,3,0 +4,40,2,1,3,0 +5,58,1,5,3,1 +4,43,2,1,3,0 +3,42,1,1,3,0 +4,32,1,1,3,0 +5,57,4,4,2,1 +4,37,1,1,3,0 +4,70,4,4,3,1 +5,56,4,2,3,1 +3,76,0,3,2,0 +5,73,4,4,3,1 +5,77,4,5,3,1 +5,67,4,4,1,1 +5,71,4,3,3,1 +5,65,4,4,3,1 +4,43,1,1,3,0 +4,40,2,1,0,0 +4,49,2,1,3,0 +5,76,4,2,3,1 +4,55,4,4,3,0 +5,72,4,5,3,1 +3,53,4,3,3,0 +5,75,4,4,3,1 +5,61,4,5,3,1 +5,67,4,4,3,1 +5,55,4,2,3,1 +5,66,4,4,3,1 +2,76,1,1,2,0 +4,57,4,4,3,1 +5,71,3,1,3,0 +5,70,4,5,3,1 +4,35,4,2,0,0 +5,79,1,0,3,1 +4,63,2,1,3,0 +5,40,1,4,3,1 +4,41,1,1,3,0 +4,47,2,1,2,0 +4,68,1,1,3,1 +4,64,4,3,3,1 +4,65,4,4,0,1 +4,73,4,3,3,0 +4,39,4,3,3,0 +5,55,4,5,4,1 +5,53,3,4,4,0 +5,66,4,4,3,1 +4,43,3,1,2,0 +5,44,4,5,3,1 +4,77,4,4,3,1 +4,62,2,4,3,0 +5,80,4,4,3,1 +4,33,4,4,3,0 +4,50,4,5,3,1 +4,71,1,0,3,0 +5,46,4,4,3,1 +5,49,4,5,3,1 +4,53,1,1,3,0 +3,46,2,1,2,0 +4,57,1,1,3,0 +4,54,3,1,3,0 +4,54,1,0,0,0 +2,49,2,1,2,0 +4,47,3,1,3,0 +4,40,1,1,3,0 +4,45,1,1,3,0 +4,50,4,5,3,1 +5,54,4,4,3,1 +4,67,4,1,3,1 +4,77,4,4,3,1 +4,66,4,3,3,0 +4,71,2,0,3,1 +4,36,2,3,3,0 +4,69,4,4,3,0 +4,48,1,1,3,0 +4,64,4,4,3,1 +4,71,4,2,3,1 +5,60,4,3,3,1 +4,24,1,1,3,0 +5,34,4,5,2,1 +4,79,1,1,2,0 +4,45,1,1,3,0 +4,37,2,1,2,0 +4,42,1,1,2,0 +4,72,4,4,3,1 +5,60,4,5,3,1 +5,85,3,5,3,1 +4,51,1,1,3,0 +5,54,4,5,3,1 +5,55,4,3,3,1 +4,64,4,4,3,0 +5,67,4,5,3,1 +5,75,4,3,3,1 +5,87,4,4,3,1 +4,46,4,4,3,1 +4,59,2,1,0,0 +55,46,4,3,3,1 +5,61,1,1,3,1 +4,44,1,4,3,0 +4,32,1,1,3,0 +4,62,1,1,3,0 +5,59,4,5,3,1 +4,61,4,1,3,0 +5,78,4,4,3,1 +5,42,4,5,3,0 +4,45,1,2,3,0 +5,34,2,1,3,1 +5,39,4,3,0,1 +4,27,3,1,3,0 +4,43,1,1,3,0 +5,83,4,4,3,1 +4,36,2,1,3,0 +4,37,2,1,3,0 +4,56,3,1,3,1 +5,55,4,4,3,1 +5,46,3,0,3,0 +4,88,4,4,3,1 +5,71,4,4,3,1 +4,41,2,1,3,0 +5,49,4,4,3,1 +3,51,1,1,4,0 +4,39,1,3,3,0 +4,46,2,1,3,0 +5,52,4,4,3,1 +5,58,4,4,3,1 +4,67,4,5,3,1 +5,80,4,4,3,1 +3,46,1,0,0,0 +3,43,1,0,0,0 +4,45,1,1,3,0 +5,68,4,4,3,1 +4,54,4,4,0,1 +4,44,2,3,3,0 +5,74,4,3,3,1 +5,55,4,5,3,0 +4,49,4,4,3,1 +4,49,1,1,3,0 +5,50,4,3,3,1 +5,52,3,5,3,1 +4,45,1,1,3,0 +4,66,1,1,3,0 +4,68,4,4,3,1 +4,72,2,1,3,0 +5,64,0,0,3,0 +2,49,0,3,3,0 +3,44,0,4,3,0 +5,74,4,4,3,1 +5,58,4,4,3,1 +4,77,2,3,3,0 +4,49,3,1,3,0 +4,34,0,0,4,0 +5,60,4,3,3,1 +5,69,4,3,3,1 +4,53,2,1,3,0 +3,46,3,4,3,0 +5,74,4,4,3,1 +4,58,1,1,3,0 +5,68,4,4,3,1 +5,46,4,3,3,0 +5,61,2,4,3,1 +5,70,4,3,3,1 +5,37,4,4,3,1 +3,65,4,5,3,1 +4,67,4,4,3,0 +5,69,3,4,3,0 +5,76,4,4,3,1 +4,65,4,3,3,0 +5,72,4,2,3,1 +4,62,4,2,3,0 +5,42,4,4,3,1 +5,66,4,3,3,1 +5,48,4,4,3,1 +4,35,1,1,3,0 +5,60,4,4,3,1 +5,67,4,2,3,1 +5,78,4,4,3,1 +4,66,1,1,3,1 +4,26,1,1,0,0 +4,48,1,1,3,0 +4,31,1,1,3,0 +5,43,4,3,3,1 +5,72,2,4,3,0 +5,66,1,1,3,1 +4,56,4,4,3,0 +5,58,4,5,3,1 +5,33,2,4,3,1 +4,37,1,1,3,0 +5,36,4,3,3,1 +4,39,2,3,3,0 +4,39,4,4,3,1 +5,83,4,4,3,1 +4,68,4,5,3,1 +5,63,3,4,3,1 +5,78,4,4,3,1 +4,38,2,3,3,0 +5,46,4,3,3,1 +5,60,4,4,3,1 +5,56,2,3,3,1 +4,33,1,1,3,0 +4,0,4,5,3,1 +4,69,1,5,3,1 +5,66,1,4,3,1 +4,72,1,3,3,0 +4,29,1,1,3,0 +5,54,4,5,3,1 +5,80,4,4,3,1 +5,68,4,3,3,1 +4,35,2,1,3,0 +4,57,3,0,3,0 +5,0,4,4,3,1 +4,50,1,1,3,0 +4,32,4,3,3,0 +0,69,4,5,3,1 +4,71,4,5,3,1 +5,87,4,5,3,1 +3,40,2,0,3,0 +4,31,1,1,0,0 +4,64,1,1,3,0 +5,55,4,5,3,1 +4,18,1,1,3,0 +3,50,2,1,0,0 +4,53,1,1,3,0 +5,84,4,5,3,1 +5,80,4,3,3,1 +4,32,1,1,3,0 +5,77,3,4,3,1 +4,38,1,1,3,0 +5,54,4,5,3,1 +4,63,1,1,3,0 +4,61,1,1,3,0 +4,52,1,1,3,0 +4,36,1,1,3,0 +4,41,0,0,3,0 +4,59,1,1,3,0 +5,51,4,4,2,1 +4,36,1,1,3,0 +5,40,4,3,3,1 +4,49,1,1,3,0 +4,37,2,3,3,0 +4,46,1,1,3,0 +4,63,1,1,3,0 +4,28,2,1,3,0 +4,47,2,1,3,0 +4,42,2,1,3,1 +5,44,4,5,3,1 +4,49,4,4,3,0 +5,47,4,5,3,1 +5,52,4,5,3,1 +4,53,1,1,3,1 +5,83,3,3,3,1 +4,50,4,4,0,1 +5,63,4,4,3,1 +4,82,0,5,3,1 +4,54,1,1,3,0 +4,50,4,4,3,0 +5,80,4,5,3,1 +5,45,2,4,3,0 +5,59,4,4,0,1 +4,28,2,1,3,0 +4,31,1,1,3,0 +4,41,2,1,3,0 +4,21,3,1,3,0 +5,44,3,4,3,1 +5,49,4,4,3,1 +5,71,4,5,3,1 +5,75,4,5,3,1 +4,38,2,1,3,0 +4,60,1,3,3,0 +5,87,4,5,3,1 +4,70,4,4,3,1 +5,55,4,5,3,1 +3,21,1,1,3,0 +4,50,1,1,3,0 +5,76,4,5,3,1 +4,23,1,1,3,0 +3,68,0,0,3,0 +4,62,4,0,3,1 +5,65,1,0,3,1 +5,73,4,5,3,1 +4,38,2,3,3,0 +2,57,1,1,3,0 +5,65,4,5,3,1 +5,67,2,4,3,1 +5,61,2,4,3,1 +5,56,4,4,3,0 +5,71,2,4,3,1 +4,49,2,2,3,0 +4,55,0,0,3,0 +4,44,2,1,3,0 +0,58,4,4,3,0 +4,27,2,1,3,0 +5,73,4,5,3,1 +4,34,2,1,3,0 +5,63,0,4,3,1 +4,50,2,1,3,1 +4,62,2,1,3,0 +3,21,3,1,3,0 +4,49,2,0,3,0 +4,36,3,1,3,0 +4,45,2,1,3,1 +5,67,4,5,3,1 +4,21,1,1,3,0 +4,57,2,1,3,0 +5,66,4,5,3,1 +4,71,4,4,3,1 +5,69,3,4,3,1 +6,80,4,5,3,1 +3,27,2,1,3,0 +4,38,2,1,3,0 +4,23,2,1,3,0 +5,70,0,5,3,1 +4,46,4,3,3,0 +4,61,2,3,3,0 +5,65,4,5,3,1 +4,60,4,3,3,0 +5,83,4,5,3,1 +5,40,4,4,3,1 +2,59,0,4,3,0 +4,53,3,4,3,0 +4,76,4,4,3,0 +5,79,1,4,3,1 +5,38,2,4,3,1 +4,61,3,4,3,0 +4,56,2,1,3,0 +4,44,2,1,3,0 +4,64,3,4,0,1 +4,66,3,3,3,0 +4,50,3,3,3,0 +4,46,1,1,3,0 +4,39,1,1,3,0 +4,60,3,0,0,0 +5,55,4,5,3,1 +4,40,2,1,3,0 +4,26,1,1,3,0 +5,84,3,2,3,1 +4,41,2,2,3,0 +4,63,1,1,3,0 +2,65,0,1,2,0 +4,49,1,1,3,0 +4,56,2,2,3,1 +5,65,4,4,3,0 +4,54,1,1,3,0 +4,36,1,1,3,0 +5,49,4,4,3,0 +4,59,4,4,3,1 +5,75,4,4,3,1 +5,59,4,2,3,0 +5,59,4,4,3,1 +4,28,4,4,3,1 +5,53,4,5,3,0 +5,57,4,4,3,0 +5,77,4,3,4,0 +5,85,4,3,3,1 +4,59,4,4,3,0 +5,59,1,5,3,1 +4,65,3,3,3,1 +4,54,2,1,3,0 +5,46,4,5,3,1 +4,63,4,4,3,1 +4,53,1,1,3,1 +4,56,1,1,3,0 +5,66,4,4,3,1 +5,66,4,5,3,1 +4,55,1,1,3,0 +4,44,1,1,3,0 +5,86,3,4,3,1 +5,47,4,5,3,1 +5,59,4,5,3,1 +5,66,4,5,3,0 +5,61,4,3,3,1 +3,46,0,5,0,1 +4,69,1,1,3,0 +5,93,1,5,3,1 +4,39,1,3,3,0 +5,44,4,5,3,1 +4,45,2,2,3,0 +4,51,3,4,3,0 +4,56,2,4,3,0 +4,66,4,4,3,0 +5,61,4,5,3,1 +4,64,3,3,3,1 +5,57,2,4,3,0 +5,79,4,4,3,1 +4,57,2,1,0,0 +4,44,4,1,1,0 +4,31,2,1,3,0 +4,63,4,4,3,0 +4,64,1,1,3,0 +5,47,4,5,3,0 +5,68,4,5,3,1 +4,30,1,1,3,0 +5,43,4,5,3,1 +4,56,1,1,3,0 +4,46,2,1,3,0 +4,67,2,1,3,0 +5,52,4,5,3,1 +4,67,4,4,3,1 +4,47,2,1,3,0 +5,58,4,5,3,1 +4,28,2,1,3,0 +4,43,1,1,3,0 +4,57,2,4,3,0 +5,68,4,5,3,1 +4,64,2,4,3,0 +4,64,2,4,3,0 +5,62,4,4,3,1 +4,38,4,1,3,0 +5,68,4,4,3,1 +4,41,2,1,3,0 +4,35,2,1,3,1 +4,68,2,1,3,0 +5,55,4,4,3,1 +5,67,4,4,3,1 +4,51,4,3,3,0 +2,40,1,1,3,0 +5,73,4,4,3,1 +4,58,0,4,3,1 +4,51,0,4,3,0 +3,50,0,0,3,1 +5,59,4,3,3,1 +6,60,3,5,3,1 +4,27,2,1,0,0 +5,54,4,3,3,0 +4,56,1,1,3,0 +5,53,4,5,3,1 +4,54,2,4,3,0 +5,79,1,4,3,1 +5,67,4,3,3,1 +5,64,3,3,3,1 +4,70,1,2,3,1 +5,55,4,3,3,1 +5,65,3,3,3,1 +5,45,4,2,3,1 +4,57,4,4,0,1 +5,49,1,1,3,1 +4,24,2,1,3,0 +4,52,1,1,3,0 +4,50,2,1,3,0 +4,35,1,1,3,0 +5,0,3,3,3,1 +5,64,4,3,3,1 +5,40,4,1,1,1 +5,66,4,4,3,1 +4,64,4,4,3,1 +5,52,4,3,3,1 +5,43,1,4,3,1 +4,56,4,4,3,0 +4,72,3,0,3,0 +6,51,4,4,3,1 +4,79,4,4,3,1 +4,22,2,1,3,0 +4,73,2,1,3,0 +4,53,3,4,3,0 +4,59,2,1,3,1 +4,46,4,4,2,0 +5,66,4,4,3,1 +4,50,4,3,3,1 +4,58,1,1,3,1 +4,55,1,1,3,0 +4,62,2,4,3,1 +4,60,1,1,3,0 +5,57,4,3,3,1 +4,57,1,1,3,0 +6,41,2,1,3,0 +4,71,2,1,3,1 +4,32,2,1,3,0 +4,57,2,1,3,0 +4,19,1,1,3,0 +4,62,2,4,3,1 +5,67,4,5,3,1 +4,50,4,5,3,0 +4,65,2,3,2,0 +4,40,2,4,2,0 +6,71,4,4,3,1 +6,68,4,3,3,1 +4,68,1,1,3,0 +4,29,1,1,3,0 +4,53,2,1,3,0 +5,66,4,4,3,1 +4,60,3,0,4,0 +5,76,4,4,3,1 +4,58,2,1,2,0 +5,96,3,4,3,1 +5,70,4,4,3,1 +4,34,2,1,3,0 +4,59,2,1,3,0 +4,45,3,1,3,1 +5,65,4,4,3,1 +4,59,1,1,3,0 +4,21,2,1,3,0 +3,43,2,1,3,0 +4,53,1,1,3,0 +4,65,2,1,3,0 +4,64,2,4,3,1 +4,53,4,4,3,0 +4,51,1,1,3,0 +4,59,2,4,3,0 +4,56,2,1,3,0 +4,60,2,1,3,0 +4,22,1,1,3,0 +4,25,2,1,3,0 +6,76,3,0,3,0 +5,69,4,4,3,1 +4,58,2,1,3,0 +5,62,4,3,3,1 +4,56,4,4,3,0 +4,64,1,1,3,0 +4,32,2,1,3,0 +5,48,0,4,0,1 +5,59,4,4,2,1 +4,52,1,1,3,0 +4,63,4,4,3,0 +5,67,4,4,3,1 +5,61,4,4,3,1 +5,59,4,5,3,1 +5,52,4,3,3,1 +4,35,4,4,3,0 +5,77,3,3,3,1 +5,71,4,3,3,1 +5,63,4,3,3,1 +4,38,2,1,2,0 +5,72,4,3,3,1 +4,76,4,3,3,1 +4,53,3,3,3,0 +4,67,4,5,3,0 +5,69,2,4,3,1 +4,54,1,1,3,0 +2,35,2,1,2,0 +5,68,4,3,3,1 +4,68,4,4,3,0 +4,67,2,4,3,1 +3,39,1,1,3,0 +4,44,2,1,3,0 +4,33,1,1,3,0 +4,60,0,4,3,0 +4,58,1,1,3,0 +4,31,1,1,3,0 +3,23,1,1,3,0 +5,56,4,5,3,1 +4,69,2,1,3,1 +6,63,1,1,3,0 +4,65,1,1,3,1 +4,44,2,1,2,0 +4,62,3,3,3,1 +4,67,4,4,3,1 +4,56,2,1,3,0 +4,52,3,4,3,0 +4,43,1,1,3,1 +4,41,4,3,2,1 +4,42,3,4,2,0 +3,46,1,1,3,0 +5,55,4,4,3,1 +5,58,4,4,2,1 +5,87,4,4,3,1 +4,66,2,1,3,0 +0,72,4,3,3,1 +5,60,4,3,3,1 +5,83,4,4,2,1 +4,31,2,1,3,0 +4,53,2,1,3,0 +4,64,2,3,3,0 +5,31,4,4,2,1 +5,62,4,4,2,1 +4,56,2,1,3,0 +5,58,4,4,3,1 +4,67,1,4,3,0 +5,75,4,5,3,1 +5,65,3,4,3,1 +5,74,3,2,3,1 +4,59,2,1,3,0 +4,57,4,4,4,1 +4,76,3,2,3,0 +4,63,1,4,3,0 +4,44,1,1,3,0 +4,42,3,1,2,0 +4,35,3,0,2,0 +5,65,4,3,3,1 +4,70,2,1,3,0 +4,48,1,1,3,0 +4,74,1,1,1,1 +6,40,0,3,4,1 +4,63,1,1,3,0 +5,60,4,4,3,1 +5,86,4,3,3,1 +4,27,1,1,3,0 +4,71,4,5,2,1 +5,85,4,4,3,1 +4,51,3,3,3,0 +6,72,4,3,3,1 +5,52,4,4,3,1 +4,66,2,1,3,0 +5,71,4,5,3,1 +4,42,2,1,3,0 +4,64,4,4,2,1 +4,41,2,2,3,0 +4,50,2,1,3,0 +4,30,1,1,3,0 +4,67,1,1,3,0 +5,62,4,4,3,1 +4,46,2,1,2,0 +4,35,1,1,3,0 +4,53,1,1,2,0 +4,59,2,1,3,0 +4,19,3,1,3,0 +5,86,2,1,3,1 +4,72,2,1,3,0 +4,37,2,1,2,0 +4,46,3,1,3,1 +4,45,1,1,3,0 +4,48,4,5,3,0 +4,58,4,4,3,1 +4,42,1,1,3,0 +4,56,2,4,3,1 +4,47,2,1,3,0 +4,49,4,4,3,1 +5,76,2,5,3,1 +5,62,4,5,3,1 +5,64,4,4,3,1 +5,53,4,3,3,1 +4,70,4,2,2,1 +5,55,4,4,3,1 +4,34,4,4,3,0 +5,76,4,4,3,1 +4,39,1,1,3,0 +2,23,1,1,3,0 +4,19,1,1,3,0 +5,65,4,5,3,1 +4,57,2,1,3,0 +5,41,4,4,3,1 +4,36,4,5,3,1 +4,62,3,3,3,0 +4,69,2,1,3,0 +4,41,3,1,3,0 +3,51,2,4,3,0 +5,50,3,2,3,1 +4,47,4,4,3,0 +4,54,4,5,3,1 +5,52,4,4,3,1 +4,30,1,1,3,0 +3,48,4,4,3,1 +5,0,4,4,3,1 +4,65,2,4,3,1 +4,50,1,1,3,0 +5,65,4,5,3,1 +5,66,4,3,3,1 +6,41,3,3,2,1 +5,72,3,2,3,1 +4,42,1,1,1,1 +4,80,4,4,3,1 +0,45,2,4,3,0 +4,41,1,1,3,0 +4,72,3,3,3,1 +4,60,4,5,3,0 +5,67,4,3,3,1 +4,55,2,1,3,0 +4,61,3,4,3,1 +4,55,3,4,3,1 +4,52,4,4,3,1 +4,42,1,1,3,0 +5,63,4,4,3,1 +4,62,4,5,3,1 +4,46,1,1,3,0 +4,65,2,1,3,0 +4,57,3,3,3,1 +4,66,4,5,3,1 +4,45,1,1,3,0 +4,77,4,5,3,1 +4,35,1,1,3,0 +4,50,4,5,3,1 +4,57,4,4,3,0 +4,74,3,1,3,1 +4,59,4,5,3,0 +4,51,1,1,3,0 +4,42,3,4,3,1 +4,35,2,4,3,0 +4,42,1,1,3,0 +4,43,2,1,3,0 +4,62,4,4,3,1 +4,27,2,1,3,0 +5,0,4,3,3,1 +4,57,4,4,3,1 +4,59,2,1,3,0 +5,40,3,2,3,1 +4,20,1,1,3,0 +5,74,4,3,3,1 +4,22,1,1,3,0 +4,57,4,3,3,0 +4,57,4,3,3,1 +4,55,2,1,2,0 +4,62,2,1,3,0 +4,54,1,1,3,0 +4,71,1,1,3,1 +4,65,3,3,3,0 +4,68,4,4,3,0 +4,64,1,1,3,0 +4,54,2,4,3,0 +4,48,4,4,3,1 +4,58,4,3,3,0 +5,58,3,4,3,1 +4,70,1,1,1,0 +5,70,1,4,3,1 +4,59,2,1,3,0 +4,57,2,4,3,0 +4,53,4,5,3,0 +4,54,4,4,3,1 +4,53,2,1,3,0 +0,71,4,4,3,1 +5,67,4,5,3,1 +4,68,4,4,3,1 +4,56,2,4,3,0 +4,35,2,1,3,0 +4,52,4,4,3,1 +4,47,2,1,3,0 +4,56,4,5,3,1 +4,64,4,5,3,0 +5,66,4,5,3,1 +4,62,3,3,3,0 \ No newline at end of file Added: trunk/test/mammographic/mammographic.owl =================================================================== --- trunk/test/mammographic/mammographic.owl (rev 0) +++ trunk/test/mammographic/mammographic.owl 2010-08-20 09:02:10 UTC (rev 2265) @@ -0,0 +1,12873 @@ +<?xml version="1.0"?> +<rdf:RDF xmlns="http://dl-learner.org/mammographic#" + xml:base="http://dl-learner.org/mammographic" + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" + xmlns:owl="http://www.w3.org/2002/07/owl#" + xmlns:xsd="http://www.w3.org/2001/XMLSchema#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:mammographic="http://dl-learner.org/mammographic#"> + <owl:Ontology rdf:about="http://dl-learner.org/mammographic"/> + + + + <!-- + /////////////////////////////////////////////////////////////////////////////////////// + // + // Object Properties + // + /////////////////////////////////////////////////////////////////////////////////////// + --> + + + + + <!-- http://dl-learner.org/mammographic#hasDensity --> + + <owl:ObjectProperty rdf:about="http://dl-learner.org/mammographic#hasDensity"> + <rdfs:range rdf:resource="http://dl-learner.org/mammographic#Density"/> + <rdfs:domain rdf:resource="http://dl-learner.org/mammographic#Patient"/> + </owl:ObjectProperty> + + + + <!-- http://dl-learner.org/mammographic#hasMargin --> + + <owl:ObjectProperty rdf:about="http://dl-learner.org/mammographic#hasMargin"> + <rdfs:range rdf:resource="http://dl-learner.org/mammographic#Margin"/> + <rdfs:domain rdf:resource="http://dl-learner.org/mammographic#Patient"/> + </owl:ObjectProperty> + + + + <!-- http://dl-learner.org/mammographic#hasShape --> + + <owl:ObjectProperty rdf:about="http://dl-learner.org/mammographic#hasShape"> + <rdfs:domain rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <rdfs:range rdf:resource="http://dl-learner.org/mammographic#Shape"/> + </owl:ObjectProperty> + + + + <!-- + /////////////////////////////////////////////////////////////////////////////////////// + // + // Data properties + // + /////////////////////////////////////////////////////////////////////////////////////// + --> + + + + + <!-- http://dl-learner.org/mammographic#hasAge --> + + <owl:DatatypeProperty rdf:about="http://dl-learner.org/mammographic#hasAge"> + <rdfs:domain rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/> + </owl:DatatypeProperty> + + + + <!-- http://dl-learner.org/mammographic#hasBiRads --> + + <owl:DatatypeProperty rdf:about="http://dl-learner.org/mammographic#hasBiRads"> + <rdfs:domain rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#double"/> + </owl:DatatypeProperty> + + + + <!-- + /////////////////////////////////////////////////////////////////////////////////////// + // + // Classes + // + /////////////////////////////////////////////////////////////////////////////////////// + --> + + + + + <!-- http://dl-learner.org/mammographic#Density --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#Density"> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Measure"/> + </owl:Class> + + + + <!-- http://dl-learner.org/mammographic#Margin --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#Margin"> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Measure"/> + </owl:Class> + + + + <!-- http://dl-learner.org/mammographic#Measure --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#Measure"/> + + + + <!-- http://dl-learner.org/mammographic#Patient --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#Patient"/> + + + + <!-- http://dl-learner.org/mammographic#Shape --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#Shape"> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Measure"/> + </owl:Class> + + + + <!-- http://dl-learner.org/mammographic#circumscribed --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#circumscribed"> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Margin"/> + </owl:Class> + + + + <!-- http://dl-learner.org/mammographic#fat-containing --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#fat-containing"> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Density"/> + </owl:Class> + + + + <!-- http://dl-learner.org/mammographic#high --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#high"> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Density"/> + </owl:Class> + + + + <!-- http://dl-learner.org/mammographic#ill-defined --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#ill-defined"> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Margin"/> + </owl:Class> + + + + <!-- http://dl-learner.org/mammographic#irregular --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#irregular"> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Shape"/> + </owl:Class> + + + + <!-- http://dl-learner.org/mammographic#iso --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#iso"> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Density"/> + </owl:Class> + + + + <!-- http://dl-learner.org/mammographic#lobular --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#lobular"> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Shape"/> + </owl:Class> + + + + <!-- http://dl-learner.org/mammographic#low --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#low"> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Density"/> + </owl:Class> + + + + <!-- http://dl-learner.org/mammographic#microlobulated --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#microlobulated"> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Margin"/> + </owl:Class> + + + + <!-- http://dl-learner.org/mammographic#obscured --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#obscured"> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Margin"/> + </owl:Class> + + + + <!-- http://dl-learner.org/mammographic#oval --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#oval"> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Shape"/> + </owl:Class> + + + + <!-- http://dl-learner.org/mammographic#round --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#round"> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Shape"/> + </owl:Class> + + + + <!-- http://dl-learner.org/mammographic#spiculated --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#spiculated"> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Margin"/> + </owl:Class> + + + + <!-- http://dl-learner.org/mammographic#unknown --> + + <owl:Class rdf:about="http://dl-learner.org/mammographic#unknown"> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Density"/> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Margin"/> + <rdfs:subClassOf rdf:resource="http://dl-learner.org/mammographic#Shape"/> + </owl:Class> + + + + <!-- + /////////////////////////////////////////////////////////////////////////////////////// + // + // Individuals + // + /////////////////////////////////////////////////////////////////////////////////////// + --> + + + + + <!-- http://dl-learner.org/mammographic#Patient0 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient0"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">5.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">67.0</hasAge> + <hasShape rdf:resource="http://dl-learner.org/mammographic#lobular"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#low"/> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#spiculated"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient1 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient1"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">43.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#circumscribed"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#round"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#unknown"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient10 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient10"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">5.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">76.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#ill-defined"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#low"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#round"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient100 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient100"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">5.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">59.0</hasAge> + <hasShape rdf:resource="http://dl-learner.org/mammographic#oval"/> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#unknown"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#unknown"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient101 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient101"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">65.0</hasAge> + <hasShape rdf:resource="http://dl-learner.org/mammographic#oval"/> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#unknown"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#unknown"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient102 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient102"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">58.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#ill-defined"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#irregular"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#unknown"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient103 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient103"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">29.0</hasAge> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasShape rdf:resource="http://dl-learner.org/mammographic#oval"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#unknown"/> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#unknown"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient104 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient104"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">58.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#circumscribed"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#round"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#unknown"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient105 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient105"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">54.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#circumscribed"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#round"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#unknown"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient106 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient106"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">44.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#circumscribed"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#round"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#unknown"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient107 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient107"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">3.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">34.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#circumscribed"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#oval"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#unknown"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient108 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient108"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">57.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#circumscribed"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#low"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#round"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient109 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient109"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">33.0</hasAge> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">5.0</hasBiRads> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#ill-defined"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#irregular"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#unknown"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient11 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient11"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">3.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">42.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#circumscribed"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#low"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#oval"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient110 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient110"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">45.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#ill-defined"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#irregular"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#low"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient111 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient111"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">5.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">71.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#ill-defined"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#irregular"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#low"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient112 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient112"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">5.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">59.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#ill-defined"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#irregular"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#iso"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient113 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient113"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">56.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#circumscribed"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#oval"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#unknown"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient114 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient114"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">40.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#ill-defined"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#lobular"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#unknown"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient115 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient115"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">56.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#circumscribed"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#low"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#round"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient116 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient116"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">45.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#circumscribed"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#oval"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#unknown"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient117 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient117"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">57.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#circumscribed"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#iso"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#oval"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient118 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient118"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">5.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">55.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#ill-defined"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#lobular"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#low"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient119 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient119"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">5.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">84.0</hasAge> + <hasShape rdf:resource="http://dl-learner.org/mammographic#irregular"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#low"/> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#spiculated"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient12 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient12"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">64.0</hasAge> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#low"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#round"/> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#unknown"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient120 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient120"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">5.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">51.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#ill-defined"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#irregular"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#low"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient121 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient121"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">43.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#circumscribed"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#round"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#unknown"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient122 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient122"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">24.0</hasAge> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#circumscribed"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#iso"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#oval"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient123 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient123"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">66.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#circumscribed"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#low"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#round"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient124 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient124"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">33.0</hasAge> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">5.0</hasBiRads> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#ill-defined"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#irregular"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#low"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient125 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient125"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">59.0</hasAge> + <hasShape rdf:resource="http://dl-learner.org/mammographic#irregular"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#iso"/> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#obscured"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient126 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient126"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">76.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#obscured"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#oval"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#unknown"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient127 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient127"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">40.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#circumscribed"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#round"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#unknown"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient128 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient128"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">52.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#ill-defined"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#unknown"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#unknown"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient129 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient129"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">40.0</hasAge> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">5.0</hasBiRads> + <hasShape rdf:resource="http://dl-learner.org/mammographic#irregular"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#low"/> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#spiculated"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient13 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient13"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">36.0</hasAge> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">4.0</hasBiRads> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#circumscribed"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#iso"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#lobular"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient130 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient130"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">5.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">67.0</hasAge> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#ill-defined"/> + <hasShape rdf:resource="http://dl-learner.org/mammographic#irregular"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#low"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient131 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient131"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> + <hasBiRads rdf:datatype="http://www.w3.org/2001/XMLSchema#double">5.0</hasBiRads> + <hasAge rdf:datatype="http://www.w3.org/2001/XMLSchema#double">75.0</hasAge> + <hasShape rdf:resource="http://dl-learner.org/mammographic#irregular"/> + <hasDensity rdf:resource="http://dl-learner.org/mammographic#low"/> + <hasMargin rdf:resource="http://dl-learner.org/mammographic#obscured"/> + </owl:NamedIndividual> + + + + <!-- http://dl-learner.org/mammographic#Patient132 --> + + <owl:NamedIndividual rdf:about="http://dl-learner.org/mammographic#Patient132"> + <rdf:type rdf:resource="http://dl-learner.org/mammographic#Patient"/> ... [truncated message content] |