0
votes
1answer
46 views

PyBrain - how to validate my trained network against a test data?

So I have a ClassificationDataSet in PyBrain which I have trained with the appropriate data. Namely, the input is the following: trainSet.addSample([0,0,0,0],[1]) trainSet.addSample([0,0,0,1],[0]) ...
-2
votes
0answers
39 views

AI - Classification vs regression

I am given a training set and I need to answer the following questions. (e) Train the network on the even-numbered patterns (P = 2, 4,..., 16) in trainSet for a 200 epochs. Use patterns 1, 5, 9 ...
1
vote
1answer
43 views

Oversampling with Epsilon

I have a question about data mining. I have a dataset of 74 instances that belong to 4 classes. As the number of each class is not enough to obtain a good accuracy using some classifiers( svm, rna, ...
2
votes
2answers
178 views

Multiple output data set for neural network

Hi I've developed an Artificial Neural Network in C++ for an assignment and I was wondering if anyone knew of any multiple output data sets that I could use to test my network? I'm trying to prove ...
-2
votes
1answer
132 views

Neural network activation

From this site, The output node has a "threshold" t. Rule: If summed input ≥ t, then it "fires" (output y = 1). Else (summed input < t) it doesn't fire (output y = 0). How y equals to zero. ...
1
vote
1answer
47 views

How many distinct Boolean function representable by a threshold perceptron?

It states that there are 2^2^n distinct Boolean functions of n inputs. The question is, how many of these are representable by a threshold perceptron? Would not the answer be all? I say this because ...
0
votes
2answers
106 views

Continuous Attribute - Distribution in Naive Bayes Algorithm

I am trying to implement Naive Bayes Algorithm - by writing my own code in MATLAB. I was confused what distribution to choose for one of the continuous attributes. It has values as follows: ...
0
votes
2answers
48 views

SVM and Invalid category

I would like to have an invalid category in my SVM classification. For example considering fruit classification, I want to have APPLE, ORANGE, BANANA and 'NOT FRUIT' (invalid). I was wondering if it's ...
1
vote
1answer
82 views

Best practices for handling non decimal variables. [ACM KDD 2009 CUP]

For practice I decided to use neural network to solve problem of classification (2 classes) stated by ACM Special Interest Group on Knowledge Discovery and Data Mining at 2009 cup. The problem I have ...
2
votes
2answers
449 views

Combining Weak Learners into a Strong Classifier

How do I combine few weak learners into a strong classifier? I know the formula, but the problem is that in every paper about AdaBoost that I've read there are only formulas without any example. I ...
3
votes
1answer
258 views

Training a weak learner

I'm implementing an application using AdaBoost to classify if an elephant is Asian or African elephant. My input data is: Elephant size: 235 Elephant weight: 3568 Sample weight: 0.1 Elephant type: ...
0
votes
1answer
415 views

Decision Stumps

I'd like to implement a java application using AdaBoost wich classifies if an elephant is African or Asian Elephant. My Elephant class has fields: int size; int weight; double sampleWeight; ...
2
votes
2answers
1k views

Weak Classifier

I am trying to implement an application that uses AdaBoost algorithm. I know that AdaBoost uses set of weak classifiers, but I don't know what these weak classifiers are. Can you explain it to me with ...
0
votes
2answers
192 views

How to programmatically classify a list of objects

I'm trying to take a long list of objects (in this case, applications from the iTunes App Store) and classify them more specifically. For instance, there are a bunch of applications currently ...
0
votes
1answer
538 views

Multiclass ROC curves in R

I'm new to the concept of ROC curves. I've tried to understand it by reading a few tutorials on the web. I found a really good example here in python which was helpful. I want to plot a ROC curve for ...
1
vote
1answer
83 views

Classifier with heterogeneous data

I have a l2-dimensional data set of 1000 samples composed of 5 temperature values, 5 price values, one integer value representing a judgement by a human expert (undecided=0, good=1, bad=2, danger=4) ...
2
votes
3answers
296 views

AI - String/Text Classification/Categorization (e.g. a string/text is classified as a company name)

My problem is to filter out all the names of persons in a table, i.e. names of companies, schools, institutions will be left in the database. I tried a simple solution wherein I was given a list of ...
0
votes
3answers
491 views

Implementing Adaboost for multiple dimensions in Java

I'm working on AdaBoost implementation in Java. It should have work for "double" coordinates on 2D 3D or 10D. All I found for Java is for a binary data (0,1) and not for multi-dimensional space. I'm ...
8
votes
4answers
1k views

NLP and Machine learning for sentiment analysis

I'm trying to write a program that takes text(article) as input and outputs the polarity of this text, weather its a positive or a negative sentiment. I've read extensively about different approaches ...
1
vote
1answer
166 views

Classifying a classifier

I've implemented a classifier which Each iteration receives a parameter object to classify, some objects share a classifiable "property" like a color name. Classification parameters could change, ...
1
vote
4answers
341 views

how to categorize but don't use Classification or Clustering algorithms?

I have a crawler program that stores sport data from 7 difference news agencies every day. it stores about 1200 sport news every day. I want to categorize news of last two days into sub-categories. So ...
3
votes
3answers
154 views

What classifiers to use for deciding if two datasets depict the same individual?

Suppose I have pictures of faces of a set of individuals. The question I'm trying to answer is: "do these two pictures represent the same individual"? As usual, I have a training set containing ...
1
vote
1answer
386 views

Ideal algorithmic approach — Rule-engine / Decision-Tree and some Learning logic?

My requirement is probably close to what one expects of an "Expert System". And looking for the simplest solution, that can give me real-time or near-real time inference, with some offline ...
8
votes
5answers
321 views

Randomness in Artificial Intelligence & Machine Learning

This question came to my mind while working on 2 projects in AI and ML. What If I'm building a model (e.g. Classification Neural Network,K-NN, .. etc) and this model uses some function that includes ...
4
votes
3answers
525 views

Feature selection and unsupervised learning for multilingual data + machine learning algorithm selection

Questions I want to classify/categorize/cluster/group together a set of several thousand websites. There's data that we can train on, so we can do supervised learning, but it's not data that we've ...
1
vote
1answer
456 views

Google Summer of Code: web classification dataset

I heard that Google hosted (or will host) a web classification competition and they provided a large (170k+ documents) dataset of web sites that were classified into multiple categories (sports, ...
0
votes
3answers
1k views

Adaptive Neuro-Fuzzy Inference System (ANFIS)

Do you have an example or an explanation of ANFIS (Adaptive Neuro-Fuzzy Inference System), I am reading that this could be applied to classify some diseases, What do you think about it?
3
votes
4answers
802 views

state-of-the-art of classification algorithms

We know there are like a thousand of classifiers, recently I was told that, some people say adaboost is like the out of the shell one. Are There better algorithms (with that voting idea) What is ...
0
votes
2answers
553 views

parameter optimization for classifier algorithm

It is said that different algorithms have different parameters. I don't really see this as true, say if it is a tree decision algorithm and naive bayesian algorithm, what is the parameter for each? ...
4
votes
2answers
4k views

support vector machines in matlab

Could you give an example of classification of 4 classes using Support Vector Machines (SVM) in matlab something like: atribute_1 atribute_2 atribute_3 atribute_4 class 1 2 3 ...
2
votes
2answers
300 views

Can you help me with linear activation of my Simple Classifier Neural Network in pyBrain?

I'm trying a very simple case using a Python library called pyBrain and I can't get it to work. There is likely to be a very simple reason, so, I hope someone can help! 1) A simple XOR works ...
1
vote
3answers
180 views

The termination criteria when building decision tree

I am writing my own code for a decision tree. I need to decide on when to terminate the tree building process. I could think of limiting the height of the tree, but this seems trivial. Could anyone ...
3
votes
3answers
314 views

Please help me on choosing right classifer

I am facing a problem on selecting correct classifier for my data-mining task. I am labeling webpages using statistical method and label them using a 1-4 scale,1 being the poorest while 4 being the ...
24
votes
11answers
2k views

Detecting an online poker cheat

It recently emerged on a large poker site that some players were possibly able to see all opponents cards as they played through exploiting a security vulnerability that was discovered. A naïve ...
-61
votes
1answer
6k views

Single layer neural network [closed]

For the implementation of single layer neural network, I have two data files. In: 0.832 64.643 0.818 78.843 Out: 0 0 1 0 0 1 The above is the format of 2 data files. The target ...
5
votes
3answers
219 views

AI / Statistical methods for determining the name of a colour

I'm thinking about writing a little library to make a guess at the name of an (RGB value) colour, from a predetermined list of candidates. My first attempt was based purely on pythagorean distance ...
14
votes
3answers
2k views

Beginner's resources/introductions to classification algorithms [closed]

everybody. I am entirely new to the topic of classification algorithms, and need a few good pointers about where to start some "serious reading". I am right now in the process of finding out, whether ...
14
votes
9answers
4k views

Using Artificial Intelligence (AI) to predict Stock Prices

Given a set of datavery similar to the Motley Fool CAPS system, where individual users enter BUY and SELL recommendations on various equities. What I would like to do is show each recommendation and ...
11
votes
1answer
2k views

How to engineer features for machine learning

Do you have some advices or reading how to engineer features for a machine learning task? Good input features are important even for a neural network. The chosen features will affect the needed number ...
11
votes
6answers
2k views

What algorithms are suitable for this simple machine learning problem?

I have a what I think is a simple machine learning question. Here is the basic problem: I am repeatedly given a new object and a list of descriptions about the object. For example: new_object: 'bob' ...
4
votes
2answers
149 views

blindly classifying new trends in incoming data

how do news outlets like google news automatically classify and rank documents about emerging topics, like "obama's 2011 budget"? i've got a pile of articles tagged with baseball data like player ...
1
vote
1answer
139 views

How to filter/sort/rank object model nodes?

I have some kind of object model and I need to filter and sort it's nodes for some kind of property. What kinds of automated systems exist to generate and select properties of the object model that ...
7
votes
2answers
1k views

Measuring the performance of classification algorithm

I've got a classification problem in my hand, which I'd like to address with a machine learning algorithm ( Bayes, or Markovian probably, the question is independent on the classifier to be used). ...