############################################################################### # Disclaimer: http://www.lockheedmartin.com/disclaimer.html ## # This file is in N3 format, a language equivalent to XML but easier to # read and write. It is best viewed with tab stops at 8 spaces. # The following are bindings for namespace shorthands. ## @prefix rdf: . @prefix rdfs: . @prefix owl: . @prefix dc: . @prefix dct: . @prefix log: . @prefix : . ############################################################################### # We suggest using @prefix ex: for this ontology. ## =<>; a log:N3Document; a owl:Ontology; dc:title "An Ontology for Algorithm Experiments"; dc:description "This ontology is intended to capture the fundamental concepts for the broad class of experiments using algorithms."; dc:publisher "Lockheed Martin Advanced Technology Laboratories"; dc:creator "Benjamin C. Ashpole, bashpole@atl.lmco.com"; dc:creator "Todd Hughes, thughes@atl.lmco.com"; dct:created "2004-04-30"; dct:issued "2003-04-30"; owl:versionInfo "0.0.0"; dc:format "text/n3"; dc:language "en". ############################################################################### # Below, we define an ontology representing the fundamental concepts involved in algorithm # experiments. :ExperimentFile rdfs:comment "The class of documents containing information about an algorithm experiment. Experiment files declare instances of the Experiment Class."; a owl:Class. :Experiment rdfs:comment "Instance of this class refer to specific algorithm experiments with a specific configuration."; a rdf:Property; rdfs:domain :Experiment. :Algorithm rdfs:comment "The class of computational models for completing specific tasks. In the context of this ontology, this class refers to such models as implemented in software code and evaluated experimentally."; a owl:Class. :evaluatedOutcome rdfs:comment "The property relating an experiment to the file(s) containing information about the evaluation of that experiment."; a rdf:Property; rdfs:Domain :Experiment. :ConfigurationFile rdfs:comment "The class of documents containing information about the algorithm configuration for an experiment."; a owl:Class. :configuration rdfs:comment "The property relating an experiment to the file(s) containing information about the configuration of that experiment."; a rdf:Property; rdfs:domain :Experiment; rdfs:range :ConfigurationFile. :groundTruth rdfs:comment "The property relating an experiment to the file(s) containing information about the optimal solution for that experiment."; a rdf:Property; rdfs:domain :Experiment. :evaluator rdfs:comment "The property relating an experiment to a reference to the system that evaluates the performance of experiment subject."; a rdf:Property; rdfs:domain :Experiment. :recorder rdfs:comment "The property relating an experiment file to a reference to the system that records the performance of experiment subject."; a rdf:Property; rdfs:domain :Experiment.