summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2012-05-13doc: Describing some methodsJan Klemkow3-18/+72
2012-05-12Add a interval based regressionBenjamin Franzke2-0/+27
But its actually a very ugly prediction.
2012-05-12Explicitly state that price indexes have to correlate with quantitiesBenjamin Franzke1-3/+3
2012-05-12regress_pred: Add degree param, to fold in quad regressionBenjamin Franzke5-29/+10
2012-05-12Fold log_regress_pred into regress_predBenjamin Franzke4-21/+6
By adding a pre-filter function pointer.
2012-05-12Use polyval where appropriateBenjamin Franzke4-20/+8
..instead of doing the polynom multiplication by hand.
2012-05-12Add classification result to .gitignoreBenjamin Franzke1-0/+1
2012-05-12Implement calc_error and total_error as anonymous functionsBenjamin Franzke3-10/+3
2012-05-12get_products: Use better variable namesBenjamin Franzke1-3/+3
2012-05-12get_products: Use reshape to generate the day by product matrixBenjamin Franzke1-14/+2
2012-05-12classify: Print classified table to fileBenjamin Franzke1-1/+13
2012-05-12Add classification scriptBenjamin Franzke1-0/+12
2012-05-12run_tests: Drop random prediction methodJan Klemkow1-1/+1
Verified by: rnd_prod = (method_idx == 6); run_tests; rnd_prod = (rnd_prod & (method_idx == 6)); sum(rnd_prod)
2012-05-12 get_products: Return the real price classification set as wellBenjamin Franzke2-2/+10
2012-05-12Add classification data in octave readable formatBenjamin Franzke1-0/+7980
2012-05-12Add sed script that converts data into octave readable csv filesBenjamin Franzke1-0/+4
Usage: ./gen_octave_input.sed dmc2012_task/train.txt > train_noheader.csv
2012-05-12opt_pred: Split opt_pred in opt_idx and opt_pred.Jan Klemkow3-10/+14
So you can use the idx of opt_idx for other predictions.
2012-05-12Add dmc 2012 official task filesBenjamin Franzke5-0/+32030
2012-05-12Add .gitignoreBenjamin Franzke1-0/+6
2012-05-12doc: Add ploting scripts for sevenday and random.Jan Klemkow2-0/+32
2012-05-12chi_pred: add an inactive chi rand. pred method.Jan Klemkow2-1/+11
2012-05-12opt_pred: preallocate matrices.Jan Klemkow1-5/+4
2012-05-11run_tests: Disable all plotsBenjamin Franzke2-8/+8
2012-05-11rand_pred: Pred needs to have 570 columns, not 1Benjamin Franzke1-2/+2
2012-05-11praesentation: Fix my emailBenjamin Franzke1-1/+1
2012-05-11doc: wipJan Klemkow1-0/+2
2012-05-11doc: add presentationJan Klemkow2-54/+39
2012-05-11graph: change style and codeJan Klemkow1-1/+1
2012-05-11rand_pred: Code clean up.Jan Klemkow1-3/+3
2012-05-11run_tests: Pack struct definition into a anonymous functionBenjamin Franzke1-7/+8
2012-05-11run_tests: Use end-keyword for appending to a vectorBenjamin Franzke1-1/+1
2012-05-11get_products: Force the use of asciiBenjamin Franzke1-1/+1
Just to be sure.
2012-05-11graph: Add tango colors map and script for chats.Jan Klemkow2-0/+56
2012-05-11run_tests: Use an vector of structs for the prediction methodsBenjamin Franzke1-11/+11
Allows use to use e.g. pred_methods.name.
2012-05-11run_tests: Optimize local_min_count storageBenjamin Franzke1-2/+2
2012-05-11run_tests: Add optimze errors into qerr/terr directlyBenjamin Franzke1-3/+1
2012-05-11Put local error calculation into calc_errorBenjamin Franzke2-7/+5
2012-05-11Store all non-emta prediction methods in a cell-arrayBenjamin Franzke1-30/+25
2012-05-11Silence regress_frequency_removal outputBenjamin Franzke1-2/+2
2012-05-11regress_pred: No need to embed regressBenjamin Franzke1-6/+0
2012-05-11Move frequency removal regression into its own functionBenjamin Franzke2-7/+16
2012-05-11Remove log+quad algorithmBenjamin Franzke1-4/+1
Its really not needed since wehave optimize
2012-05-11sevenday_pred: Use same prototype as for other testsBenjamin Franzke2-6/+13
2012-05-11mean/rand_pred: Use same function prototype as regress_predBenjamin Franzke3-4/+6
The number of days is implicit in the size of the given price and quantity matrices.
2012-05-11normalize: Normalize max=min to 1Benjamin Franzke1-2/+4
2012-05-11run_tests: Store local_min_count in a variable as wellBenjamin Franzke1-2/+4
2012-05-11Print local min count for the prediction algorithmsBenjamin Franzke1-2/+7
2012-05-11Remove logarithmic + quad from optimized predictionBenjamin Franzke1-3/+3
..since optimized prediction does the same but more.
2012-05-11normalize: Work on row-vectors as wellBenjamin Franzke1-1/+2
2012-05-11Add sevenday removal algorithm to optimize-predictionBenjamin Franzke1-12/+13