Tagged Questions

In machine learning, semantic analysis of a corpus is the task of building structures that approximate concepts from a large set of documents.

learn more… | top users | synonyms

15
votes
6answers
2k views

What is the difference between an Abstract Syntax Tree and a Concrete Syntax Tree?

I've been reading a bit about how interpreters/compilers work, and one area where I'm getting confused is the difference between an AST and a CST. My understanding is that the parser makes a CST, ...
12
votes
5answers
440 views

Context-aware merge?

Is there any diff/merge tool for programming languages, that works in a syntax-aware way (like XML Diff Tool), doing more than compare line-by-line (and optionally ignoring whitespace). I'm ...
5
votes
2answers
694 views

Text mining, fact extraction, semantic analysis using .Net

I'm looking for any free tools/components/libraries that allow me to take anvantage of text mining, fact extraction and semantic analysis in my .NET application. The GATE project is what I need but ...
5
votes
3answers
371 views

How to choose a Feature Selection Algorithm? - advice

Is there a research paper/book that I can read which can tell me for the problem at hand what sort of feature selection algorithm would work best. I am trying to simply identify twitter messages as ...
4
votes
1answer
130 views

Pruning Deductions in Expert Systems

In a rule system, or any reasoning system that deduces facts via forward-chaining inference rules, how would you prune "unnecessary" branches? I'm not sure what the formal terminology is, but I'm just ...
4
votes
3answers
228 views

Audio/Video content hinting

What kind of semantic information can be extracted from such media? Anything would be fine, be it differentiation between music and spoken text, detection of distinct sounds (like gunshots or birds or ...
3
votes
3answers
121 views

Parsing Java source code with C++

I would like to create an Java source code parsing functionality in C++. The purpose of this application is to generate a syntax tree into the internal data structure so that I am able to walk the ...
3
votes
1answer
195 views

ANTLR - check semantics/meaning of the values

I have a simple grammar which allows the user to define some objects with attributes. For example: carpark : my carpark lots: 100 car: BMW color: red wheels: 4 motocycle age: 4 color: red carpark ...
3
votes
1answer
78 views

What are the jobs of a semantic analyser in a dynamic language?

Pardon my english. I am recently trying to understand the different parts of a compiler and to implement them with a play language. I am wondering what the jobs of a semantic analyzer is, because many ...
3
votes
4answers
205 views

Creating algorithms for creating relations between two words

For example relating nike -> company, nike -> shoes, shoes -> boots, boots -> ugg boots
3
votes
3answers
185 views

Associativity and Precedence of Expressions when Generating C / C++ Code?

I have written a basic compiler which generates an AST, correctly taking account of the operator precedence in expressions. However, when performing code generation to produce C++ code, I'm unsure of ...
3
votes
1answer
285 views

Grammar vs. Semantic analysis

I am wondering where is the borderline between grammar specification and semantic analysis. What is better: to use a detailed grammar description or leave the details for semantic phase? For example: ...
3
votes
2answers
144 views

Looking for a good semantic parser for the Russian language

Does anyone known of a semantic parser for the Russian language? I've attempted to configure the link-parser available from link-grammar site but to no avail. I'm hoping for a system that can run on ...
3
votes
2answers
394 views

Training set - proportion of pos / neg / neutral sentences

I am hand tagging twitter messages as Positive, Negative, Neutral. I am try to appreciate is there some logic one can use to identify of the training set what proportion of message should be positive ...
2
votes
1answer
38 views

how to determine the accuracy of a semantic search engine?

my cousin has created a semantic search engine and he claims that his search engine is the most accurate. I've seen many semantic search engine and they all look the same to me, because they are not ...
2
votes
1answer
70 views

Checking linguistic validity

Are there any [open source] code libraries for checking a sentence's linguistic validity according to syntax and semantics?
1
vote
3answers
71 views

AST trees semantic analyzer

The last nodes of an AST tree must have the information of the traduction of the semantic analyzer or the non-last nodes also can have this information?
1
vote
3answers
45 views

How do I find whether a document on the web is semantically related to some other document?

My question here is that given a document d1 on the web and a document d2 how do I tell that d1 and d2 are semantically related. Are there some API's that can do some amount of natural language ...
1
vote
2answers
262 views

simplest feature selection algorithm

I am trying to create my own and simple feature selection algorithm. The data set that I am going to work with is here (very famous data set). Can someone give me a pointer on how to do so? I am ...
1
vote
1answer
96 views

Semantic-based recommender Facebook application

As a project of this semester my friend and I are thinking to make a semantic-based recommender Facebook application. For example, if I wanted to go "a trip to Europe", this application is intended to ...
1
vote
1answer
268 views

RDF and OWL workflow question

I have been looking at and playing with OWL through Protege and I would like to know if I understand the "workflow" and idea of it correctly (for building up a database from scratch: Generate an OWL ...
1
vote
0answers
132 views

Regarding semantic analysis of content using lingpipe!

I am working on my sem project and I need some help. I need to classify the webpages based on the content present in it. For Instance, the following URL is regarding cricket ...
1
vote
2answers
296 views

Code generation for “if” statements - compilers

I am in the middle of developing a compiler for a C like language and am having some difficulties in the semantic analysis and code generation phases. My questions are the following: 1) For an if ...
1
vote
1answer
335 views

Efficient keyword detection / extraction. Predefined set of keywords

How can I efficiently extract keywords with relevance from a string? My list of keywords are predefined. For example, in an article about Michelle Obama that also mentions Barack Obama, I want to ...
0
votes
1answer
101 views

Semantic analysis in compilers [closed]

How is the semantic analysis done by a compiler (generally)? I had to answer to this question during my last exam, it wasn't enough for the professor. I included BNF (with an example) and syntactic ...
0
votes
2answers
33 views

compilers - Instruction Selection for type declarations in AST

I'm learning compilers and creating a code generator for a simple language that deals with two types: characters and integers. After the user input has been scanned by the scanner and then parsed by ...
0
votes
1answer
27 views

Frameworks for semantic annotation for user defined domain model

I have some documents and an ontology for some concepts. Are there any frameworks that automatically extracts those concepts from the given documents and creates triples? The ontology must contain ...
0
votes
1answer
47 views

What is the best way in Java to parse semantic data from a source?

I would like to read and parse a marked up text (probably microformat, microdata, rdf or similar). Do I have create my own parser or is there any java library which can help with this?
0
votes
2answers
178 views

How to extract semantic relatedness from a text corpus

The goal is to assess semantic relatedness between terms in a large text corpus, e.g. 'police' and 'crime' should have a stronger semantic relatedness than 'police' and 'mountain' as they tend to ...
0
votes
3answers
515 views

Symbol table and semantic analysis for compiler

I'm working on building a compiler (without using any tools -like lex or bison) for a C like language (a simpler one) and have gotten past the lexer and parser. I am not sure the way I am doing the ...