i need to extract domain-specific terms from a big training corpus, such as political terms or etc .how can i use Weka and it's filters to aim this object?
can i use feature vector produced by StringToVector() filter in Weka to do this or not?
how can i use weka to terminology extraction?
287 Views Asked by MSepehr At
1
There are 1 best solutions below
Related Questions in TEXT
- Delete the extra space after special character in all the lines of text file
- Apply gaussian filter on text
- text show and hide with button php/js
- Get text from a section of a pdf page with IcePdf
- load word file (.docx) in richtextbox
- Display a specific line in a text file - android/java
- how to change text direction to the right slide of switch in android?
- C language - Read specific data from text file
- Read text file from specific position and store in two arrays
- How to animate text
- Detect repetition in text string / copied text
- Use MATLAB's webread to login to website and extract text
- LWJGL Drawing colored text to the screen issue
- Hide part of text temporarily, show after user clicks certain element
- Reading text file in java using scanner
Related Questions in TERMINOLOGY
- Difference between CPU Usage and CPU Utilization?
- What does the term "bitcode" mean?
- Is it OK to call a programming language a software?
- Array dimension terminology
- Is all dynamic binding a kind of polymorphism?
- Proper term for 'if (object)' as a non-null test?
- Is there a principal that requires this type of consistency in query results?
- What does a URI look like that is not a name?
- Why is string interpolation named the way it is?
- definition of the term "syntactic form"
- Bounding Box vs. Rectangle
- Term for sublist of all elements except last?
- Is there a term for operators which modify operands?
- When Teaching R, how to avoid the possible confusion with the term ''variable''?
- What exactly does "closing over" mean?
Related Questions in WEKA
- ARFF file extension to csv binary executable
- How to cluster using kMeans in Weka?
- Difference between weka tool's correlation coefficient and scikit learn's coefficient of determination score
- How to export PCA from Weka
- scatter plot for a multiclass dataset with class imbalance and class overlapping
- Use significant attributes only, or use full set of attributes to build J48 model after checking information gain?
- Train And Use Classifier Weka In Java
- weka API import
- Prediction of sets
- Replace numbers with Boolean in r
- Weka instance.setValue arrayIndexOutOfBounsException
- How to run LibSVM Classifier with 10 fold cross validation from Weka from Linux commandline?
- Chained CostSensitiveClassifier
- How do I use custom stopwords and stemmer file in WEKA (Java)?
- Error trying to call .buildClassifier (Weka) in Java AndroidStudio
Related Questions in CATEGORIZATION
- Large Number of Tables - Find Values that Exist in More than One Table
- Reducing Amount of Categorical Data Categories by Portion of a String
- Text Categorization with Weka Issue
- Categorize book authors as fiction vs non-fiction
- Categorizing data, compute average and standard deviation of each category
- R: grouping/splitting a dataset by categories in combination with apply.weekly()
- how can i use weka to terminology extraction?
- Datastructures to improve the performance of text matching
- Need to set categorized corpus reader in NLTK and Python, corpus texts in one file, one text per line
- Default Category in Lingpipe's Text Categorization
- Make Bins in pyspark with range of values and specific values
- How to categorise years with cut?
- SQL server 2012 - group by month, 3 month, 6 months, 11 months and prior year 11 months
- show/hide categorized items with css
- Where can one configure the CNN used by the Spacy TextCategorizer?
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?
You can at least partly, as far as you have an appropriate dataset. For instance, let us assume you have a dataset like this one:
For instance, for getting terms about politics, you can:
StringToWordVectorfilter to the text attribute to get terms.AttributeSelectionfilter withRankerandInfoGainAttributeEvalto get the top ranked terms.This latter step will give you a list of terms that are most predictive for the politics category. Most of them will be terms in the politics domain (although it is possible that some terms are predictive but just because they are not in the politics domain - that is, they provide negative evidence).
The quality of the terms you get depens on the dataset. The more topics it deals with, the better for your results; so instead of having two classes (politics, religion, like in my dataset), it is much better to have plenty of them and many examples for each category.