Skip to main content

Questions tagged [automatic-algorithms]

Filter by
Sorted by
Tagged with
6 votes
1 answer
280 views

There are many resources explaining why automatic variable selection is bad (e.g. here). Regarding the selection of $p$, $d$, $q$ parameters in ARIMA models, the Hyndman-Khandakar algorithm combines ...
Thomas's user avatar
  • 600
0 votes
0 answers
47 views

I am looking for an easy way to filter out "bad" models fitted by auto.arima function. These are SARIMA models with different parameters and by a "good" model I mean model with ...
stats_b's user avatar
  • 361
1 vote
1 answer
251 views

What are techniques or best practises to choose a forecasting model in an automatic way? In our company, we have more than 10,000 articles with different sales characteristics. We have no chance to ...
voncuver's user avatar
1 vote
0 answers
72 views

autoML is a very convenient model for beginner to explore on Machine Learning and Deep Learning. The process itself rapidly growing and many ML algorithm can be found in autoML, but hardly to be ...
kasyful's user avatar
  • 23
0 votes
1 answer
98 views

Given a folder which has 10k Excel files, the objective is to identify the datasets suitable for Machine Learning Modelling Approach. We use a script right now which performs this operation and call ...
Atul Mishra's user avatar
0 votes
0 answers
63 views

I have two algorithms for automatically labeling data for a computer vision task. The dataset is large, and it's not feasible to inspect visually. Can I determine which labeling is higher quality ...
killogre's user avatar
  • 176
0 votes
0 answers
65 views

I am aware of auto.arima() in R for the automatic selection of a seasonal ARIMA (time series) model in R and functions such as leaps() in R that do automatic best subset feature selection in linear ...
0 votes
0 answers
49 views

I am working on a project, where the task is to create forecast models that can be used on a wide variaty of data sets. Some of which are stationary and some which aren't. Both ARIMA and Exponential ...
Analyzer's user avatar
2 votes
1 answer
294 views

I have an agreement study with the following basic construction: ~ 400 items are rated by (1) a computer algorithm, and (2) a human rater. The ratings are on a continuous scale. I would like to ...
Ben's user avatar
  • 63
0 votes
0 answers
52 views

The most widely used statistical techniques assume a normal distribution for inputs. The most widely used normalization procedures take a: square root (assuming polynomial distribution), log (...
James Bowery's user avatar
1 vote
0 answers
190 views

Hi Cross Validated community, I have been reading answers posted previously on the topic of automated model selection and whether it is data dredging. This has led me to doubting the validity of my ...
HerdofBears's user avatar
0 votes
2 answers
3k views

For instance, lets say I have 10,000 data points to work with for a single plot of data. I want to smooth this data using a moving average and I want this to be automated (I have already written the ...
user156127's user avatar
5 votes
2 answers
1k views

I have got > 100 river daily flow time series and I need to select a threshold for each of them in order to perform a Peak Over Threshold extreme value analysis. I know that I can select a threshold ...
aaaaa's user avatar
  • 366
0 votes
1 answer
2k views

I am analyzing time series data with 'Arima' function in R. As you know, to find optimum model, I have tried lots of cases. But, I am tired of finding and ...
Doyeong Park's user avatar
5 votes
2 answers
3k views

I have a set of 1000 time series with weekly data. These time series data are concerning the sales of food product retail. Can anyone suggest me the best/correct way to make good forecasts of this set ...
Mig's user avatar
  • 101
6 votes
1 answer
806 views

I wonder why general-to-specific (GETS) subset selection and particularly the Autometrics algorithm are performing well in macroeconomic modelling/forecasting. How does Autometrics work? Doornik "...
Richard Hardy's user avatar
1 vote
0 answers
62 views

Is there a reference setting out a best practice way to validate a regression (such as Lasso, but in general any automated regression), and what is done in practice? My motivation for the question is ...
Bob Mortimer's user avatar
2 votes
2 answers
1k views

I am trying to understand how TextRank document summary algorithm works. A few articles that I've read so far introduce text rank as a modification of page rank (e.g. article in wikipedia). However, ...
mercury0114's user avatar
0 votes
1 answer
127 views

I am working with dataset which contains number of movie tickets sold per day. This is basically a count of total number of tickets sold, for a particular movie, for each day after its release date. I ...
Peter Castle's user avatar
3 votes
2 answers
1k views

Can we identify ARIMA($p,d,q$) model without looking at the ACF and PACF plots? I am trying to write a generalized R programme for fitting time series models. We may find out the orders $p$, $d$ and $...
Shahnawaz's user avatar
3 votes
1 answer
8k views

auto.arima returns two different models weather I define my time series with frequency=1 (default value) or ...
Eduardo's user avatar
  • 453
3 votes
2 answers
4k views

I am looking for references regarding the forecasting of the demand for multiple products in an automated manner (no human intervention). Specifically, I have a number of clustered products for which ...
user90772's user avatar
  • 711
12 votes
5 answers
3k views

As I discover machine learning I see different interesting techniques such as: automatically tune algorithms with techniques such as grid search, get more accurate ...
Pholochtairze's user avatar
14 votes
4 answers
15k views

I have been trying to learn and apply ARIMA models. I have been reading an excellent text on ARIMA by Pankratz - Forecasting with Univariate Box - Jenkins Models: Concepts and Cases. In the text the ...
forecaster's user avatar
  • 8,835
3 votes
1 answer
9k views

I am trying to fit a time series using the function auto.arima and I face some strange results. As a first try, I use the command ...
Ludo's user avatar
  • 303
18 votes
3 answers
5k views

From reading posts on this site I know there is an R function auto.arima (in the forecast package). I also know that IrishStat, ...
Michael R. Chernick's user avatar