I want to know the definitions of type inference in the semantic web, but when i search it in google , i only find some definitions in the programming area.
What is Type Inference in Semantic web? not in programming
146 Views Asked by user4278026 At
2
There are 2 best solutions below
0
Klaus Reichenberger
On
I guess you are referring to a reasoning technique used in formal ontologies.
A simple example for inferring the type (also "class" or "category") of an instance in your knowledge base: your knowledge base has types like "person", "writer", "vegetarian" and instances like "Bob White" and "Dan Brown".
Instead of assigning the types directly to the instances you can use their properties (Dan Brown writes Inferno) to dynamically assign them to a type (therefore, Dan Brown must be a writer). See also "description logic".
Related Questions in SEMANTIC-WEB
- How can I restrict a data property to an exact value in Protege OWL 2?
- Convert a statement with adjective in RDF triple
- Context parameters in Blazegraph Nano SPARQL
- sparql how to search on label's value without the language indicator
- dotNetRDF Http Error when querying DBPedia
- OWL. How to express that siblings has common parent?
- Create multiple skolems with Jena rules
- How to reason or make inferences using hermit reasoner in command line
- What does partial mean in owl
- Understanding Extential and Universal restriction use case (Pizza ontology use case)
- jena read rdf illegal type exception
- Storing separately individuals and ontology in sesame store
- Virtuoso 37000 Error SP030
- How to use Apache Marmotta SPARQL webservice api with AngularJS?
- Read array of Json-Ld Objects into a Model In Apache Jena.How to retrieve individual objects from Model?
Related Questions in TYPE-INFERENCE
- Type inference inconsistency between toList and toBuffer
- Understand syntactic sugar for lambda expressions
- Implicit not found when omitting empty argument list
- Java interop - type inference failure with wildcard types
- Scala type inference for both a generic type and it's type parameter - why doesn't it work?
- Calling non-strict function in Scala with explicit types doesn't compile, inferred types works
- Matching on type patterns with type variables and type classes
- Type inference for (ignoring) method parameters in order to select a MethodInfo
- Swift Impossible Type Inference
- How to infer a function type parameter in a template function with a lambda passed as argument?
- Is declaring variable with type inference as effective as "classical way" of initializing variable with parenthesis after variable name?
- ToString throws NullReferenceException for unit value ()
- Type inference on ToString() vs string operator
- GADT's: Is there a reason why the weakest or strongest type is not chosen
- How to limit a type to the class of a interface and not the instance of that interface?
Related Questions in INFERENCE
- OWL reasoning: Necessary and sufficient conditions for inferring a property
- Marklogic : advantage of using embedded triples over triple store
- z3py: How to improve the time efficiency of the following code
- Inferencing in embedded triples of Marklogic
- How do I set up an inferred type list getter and setter?
- add RDFS inference rules support in endpoint SPARQL
- What is Type Inference in Semantic web? not in programming
- Meaning of @Flow annotation
- MarkLogic: The size limit for inferred triples in a ruleset store has been exceeded
- "expected CPU tensor(got CUDA tensor)" error for PyTorch
- Compiling model as executable for faster inference?
- Can I down-cast a class forcing it to lose the original constructor/s?
- Difficulties with Typescript args type inference
- How to increase AWS Sagemaker invocation time out while waiting for a response
- In TypeScript, how can I infer my arguments and impose a constraint that all items be keyof T, where T is the generic type for the function?
Related Questions in REASONING
- Reasoning and datatypes of Literals
- UnloadableImportException when loading ontology file with OWLAPI
- OWL reasoning: Necessary and sufficient conditions for inferring a property
- OWL 2 ontology consistency check
- Explanations for Inconsistency in OWL 2 ontology in Java
- Reasoning an ontology using OWL API
- What is Type Inference in Semantic web? not in programming
- How to disinguish between inferred and explicit axiom?
- Error when importing java class in jruby script
- HermiT Resoner with Protege OWL API
- Lack of type inheritance using a backward chaining reasoner?
- GraphDB custom ruleset for inference over RDF* statements
- Define rules for AllegroGraph triples and how to apply them
- Kripke semantics: learning software available?
- How convert MQ Error to more descriptive text
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
First off, to clarify the context of the answer, the idea behind the semantic web is to have web pages that are readable by both humans and machines. Most web pages are good at the former, but not the latter.
I haven't seen the exact term "type inference" in the context of the semantic web, but what I can infer (no pun intended) is that it's referring to machine learning. For the most part, web crawlers have to make educated guesses about what kind of data is on a particular web page and what it means, hence the need for machine learning.