Tagged Questions
The prediction tag has no wiki summary.
10
votes
4answers
354 views
What are good algorithms for detecting abnormality?
Background
Here is the problem:
A black box outputs a new number each day.
Those numbers have been recorded for a period of time.
Detect when a new number from the black box falls outside the ...
9
votes
4answers
109 views
What are some good approaches to predicting the completion time of a long process?
tl;dr: I want to predict file copy completion. What are good methods given the start time and the current progress?
Firstly, I am aware that this is not at all a simple problem, and that predicting ...
8
votes
2answers
302 views
Using SlopeOne algorithm to predict if a gamer can complete a level in a Game?
I am planning to use SlopeOne algorithm to predict if a gamer can complete a given level in a Game or not?
Here is the scenario:
Lots of Gamers play and try to complete 100 levels in the game.
Each ...
8
votes
4answers
1k views
Weather forecast using a neural network
I am trying to write a program for weather forecasting using backpropagation. I am a beginner in this field. I have historical data with different parameters like temperature, humidity, wind speed, ...
7
votes
4answers
77 views
how to guess the nationality of a person from the surname?
What approach can I use to predict the nationality of a person from the surname?
I have a huge list of texts and surnames of authors. I would like to identify which texts have been written by ...
6
votes
4answers
185 views
how to suggest gcc compiler more probable branch
Example:
if (almost_always_false_condition) {
// do something
}
Is there a way to suggest compiler that in 99% condition will be false.
The condition calculation takes ~60 cycles to be ...
6
votes
7answers
663 views
Predict next event occurrence, based on past occurrences
I'm looking for an algorithm or example material to study for predicting future events based on known patterns. Perhaps there is a name for this, and I just don't know/remember it. Something this ...
5
votes
3answers
83 views
Data structure for storing word associations
I'm trying to implement prediction by analyzing sentences. Consider the following [rather boring] sentences
Call ABC
Call ABC again
Call DEF
I'd like to have a data structure for the above ...
5
votes
6answers
188 views
How to predict when next event occurs based on previous events? [closed]
Basically, I have a reasonably large list (a year's worth of data) of times that a single discrete event occurred (for my current project, a list of times that someone printed something). Based on ...
5
votes
6answers
533 views
Pseudo-Random Binary Sequence Prediction (Newbie)
i know nothing about programming or C or windowing... nothing too deep about computers... but i'm very interested in: given a pseudo-random binary sequence (e.g.: 00101010010101) of finite values, ...
4
votes
2answers
227 views
Predict values from sinusoidal noise
Background
Using R to predict the next values in a series.
Problem
The following code generates and plots a model for a curve with some uniform noise:
slope = 0.55
offset = -0.5
amplitude = 0.22
...
4
votes
3answers
164 views
Making predictions from a CV
I have a database with many CVs, including structured data of the gender, age, address, number of years of education, and many other parameters of each person.
For about 10% of the sample, I also ...
4
votes
3answers
313 views
How to make a small engine like Wolfram|Alpha?
Lets say I have three models/tables: operating_systems, words, and programming_languages:
# operating_systems
name:string created_by:string family:string
Windows Microsoft MS-DOS
Mac OS X ...
4
votes
1answer
1k views
Weighted slope one algorithm? (porting from Python to R)
I was reading about the Weighted slope one algorithm ( and more
formally here (PDF)) which is supposed to take item ratings from different users and, given a user vector containing at least 1 rating ...
4
votes
5answers
428 views
Foosball result prediction
In our office, we regularly enjoy some rounds of foosball / table football after work. I have put together a small java program that generates random 2vs2 lineups from the available players and stores ...
3
votes
1answer
118 views
How does google prediction API work
Can someone predict :) or guess how does the Google Prediction API work under the hood?
I know there are some machine learning techniques:
Decision Trees, Neuron networks, naive Bayesian ...
3
votes
1answer
324 views
Self-organizing Fuzzy Neural Network (SOFNN) Implementations in Java, C, Python etc
We are looking for an implementation of a Self-organizing Fuzzy Neural Network (SOFNN) in Java or another lang such as Python or C.
Looking at Neuroph, one of the best Neural Net frameworks out there ...
3
votes
3answers
129 views
How to predict a True/False event
I have some measurements on a system (x, y, z, ..) over many trials. The system produces a true or false output. I would like to take my data and produce a predictor function of x,y, z, that would ...
3
votes
1answer
285 views
Gestures Prediction in Android
I am trying to work on Gestures but the problem is I'm not able to understand some of the lines of code in the sample which is present in the developer's website. Can anyone just explain me the ...
3
votes
1answer
382 views
Using LIBSVM to predict authenticity of the user
I am planning on using LibSVM to predict user authenticity in web applications.
(1) Collect Data on particular user behavior(eg. LogIn time, IP Address, Country etc.)
(2) Use Collected Data to train ...
3
votes
3answers
306 views
Opensource platform for prediction market software, Hubdub.com clone etc
I've hunted high and low in the hope I can find something like this, but now need to turn to stackoverflow.com for help. I used to be a frequent player on hubdub.com, where you could 'predict' (or ...
3
votes
1answer
357 views
Continuous prediction in Google Prediction API?
Is there any announcement about when Google will launch continuous prediction. Currently is there any trick to predict stock prices using Google's prediction API?
2
votes
1answer
80 views
R: cannot predict specific value
> age <- c(23,19,25,10,9,12,11,8)
> steroid <- c(27.1,22.1,21.9,10.7,7.4,18.8,14.7,5.7)
> sample <- data.frame(age,steroid)
> fit2 <- ...
2
votes
2answers
126 views
Predicting Values with k-Means Clustering Algorithm
I'm messing around with machine learning, and I've written a K Means algorithm implementation in Python. It takes a two dimensional data and organises them into clusters. Each data point also has a ...
2
votes
1answer
66 views
Expert: algorithm to predict next key in a numeric keyboard based on limits (min x max)
I'm trying to make an algorithm that calculates what keys can be pressed in a numeric keyboard, based on limits (min and max values) predetermined. So I can hide those keys that are "unavailable".
...
2
votes
3answers
171 views
How to predict number sequences i.e. Excel?
In Excel, there is a nice feature where if you enter 1, 2, 3 in three consecutive cells and then select the cells and drag down, it automatically fills in the rest of the cells as 4, 5, 6, 7, etc. It ...
2
votes
3answers
249 views
Latent Dirichlet Allocation (LDA) implementation
does someone know if there exists some implementation of LDA algorithm (no matter if library or application) for Win32 platform? Maybe in C/C++ or other language that can be compiled?
2
votes
2answers
649 views
Basic Pseudocode for using SVD with Movielens/Netflix type data set
I'm struggling to figure out how exactly to begin using SVD with a MovieLens/Netflix type data set for rating predictions. I'd very much appreciate any simple samples in python/java, or basic ...
2
votes
2answers
461 views
LibSVM Input format
I want to represent a set of labelled instances (data) in a file to be fed in to LibSVM as training data. For the problem mentioned in this question. It will include,
Login date
Login time
...
2
votes
1answer
165 views
Continuous time-dependent signal prediction
Which type of artificial neural network would you suggest to be able to make continuous time-dependant signal predictions? It should predict smallscale steps over very few signals up to very large ...
2
votes
2answers
413 views
Sports Prediction and Neural Networks
Hi everyone i just wanted to know if anyone has implemented a Neural Network which can predict sports results. i would like to do this however i have no idea where to start, so if anyone has done this ...
2
votes
3answers
161 views
Is there any timeline to predict the support of HTML5 features? Any source?
Planning to use HTML5 in a big project, I need to make an exact timeline for future changes.
Is there any source to tell me when a particular feature of HTML5 will be ready? Is there a roadmap for ...
2
votes
2answers
49 views
AJAX and prediction of actions
I'd like to ask your opinion on this. This is a theoretical question.
I'm in a situation where I have an interface shown to a user that uses AJAX to talk to the server. The server-side language does ...
1
vote
1answer
38 views
Looking for a better method to do Quaternion differentiaton
I have a quaternion (4x1) and an angular velocity vector(3x1) and I call a function to calculates the differential quaternion as explained in this web. The code looks like this:
float wx = ...
1
vote
3answers
52 views
Words Prediction - Get most frequent predecessor and successor
Given a word I want to get the list of most frequent predecessors and successors of the word in English language.
I have developed a code that does bigram analysis on any corpus ( I have used Enron ...
1
vote
2answers
133 views
R: make pls calibration models from n number of subset and use them to predict different test sets
I am trying to apply a function I wrote that uses the 'pls' package to make a model and then use it
to predict several test set(in this case 9), returning the R2,RMSEP and prediction bias of each test ...
1
vote
1answer
77 views
Predicting the output of Linear Congruential PRNG's
I thought this topic would be a widely discussed one, but after a while of googling pretty much all I could find was references to a few mathematicians, on which further research didn't give me ...
1
vote
1answer
327 views
R: how to make a confusion matrix for a predictive model?
I have a dataframe. first column contains my the predictive score (range from 0 to 100, smaller values is expected to be in class A, larger values is expected to be in class B) for my model, 2nd ...
1
vote
2answers
169 views
Artificial Intelligence/Rules to guess user taste in Apparel/Clothing
Are there standard rules engine/algorithms around AI that would predict the user taste on a particular kind of product like clothes.
I know it's one thing all e-commerce website will kill for. But I ...
1
vote
2answers
275 views
How to test time series model?
I am wondering what the good approach for testing time series model would be. Suppose I have a time series in a time domain t1,t2,...tN. I have inputs, say, zt1, zt2,...ztN and output x1,x2...xN.
...
1
vote
2answers
99 views
Heuristic to predict Name or Company
Problem
We are recieving strings and they may either represent a company name or a person's name. We need a heuristic to determine this.
Initial thoughts
Use an XML doc with either node Commercial ...
1
vote
2answers
191 views
capacity planning determine whether the system could handle load
Lets say a jee based e-commerce web site is performing well giving expected response time and throughput. The web site is undergoing major ui changes and it is expected to bring 3 times more traffic. ...
1
vote
2answers
149 views
Predict downloads
I'm writing a little tool that counts the downloads of an app. I save every download with a timestamp.
What algorithm (php and mysql) is normally used for predicting eg todays downloads?
1
vote
5answers
570 views
recommendation systems and the cold start problem
I am curious what are the methods / approaches to overcome the "cold start" problem where when a new user or an item enters the system, due to lack of info about this new entity, making recommendation ...
1
vote
5answers
161 views
Predictional Logic in Programming?
I was thinking about how in the probably distant future many people think that we wont rely on physical input (i.e. keyboard) as much because the technology that reads brain waves (which already ...
0
votes
1answer
49 views
bayes net open source [closed]
Can anyone recommend a good opensource or free bayes net software program?
I have been using baysealab with a class, but my account will expire and I'd like to continue building and using bns.
0
votes
1answer
18 views
Multiple classifications from predictive classifier
I have a classification problem where I would like to predict an outcome, but would like my classifier to get several 'attempts' at the answer (something like placing an each-way bet), rather than a ...
0
votes
0answers
104 views
Google Prediction Training in PHP
I'm trying to use Google Prediction in PHP. I already made the authorization in OAuth 2.0 but now I'm want to train my model. I'm trying to follow the example in Prediction Explorer ...
0
votes
1answer
89 views
What techniques can be used for horseracing forecasting?
I need to design "A horse racing simulation" software. For that i need to analyze past records of races to determine a formula that can describe how the dependent variable Y respond to the changes in ...
0
votes
0answers
32 views
ANN versus regression analysis for prediction purposes
I've been tasked to produce a prediction utility which will display storage requirements on various systems. I can measure all inputs to the system, e.g. data added per month, data deleted, space ...