Hi, all.
I’m confused with the role of “disableLearning” function during OPF.
I have a 180 thousand records in a csv file that I want to run with in OPF.
I called model.disableLearning() at certain record, for example 1,000th record.
After calling this function, predicted value was fixed with a number.
timestamp,actualValue,predicted
2016-09-06 13:03:00,6.5,6.501031328199021
2016-09-06 13:04:00,6.7,6.560721929739314
2016-09-06 13:05:00,6.7,6.542505350817519
2016-09-06 13:06:00,6.7,6.589753745572263
2016-09-06 13:07:00,6.7,6.6228276219005835
2016-09-06 13:08:00,6.5,6.6459793353304075
2016-09-06 13:09:00,6.7,6.662185534731285
------------------------------------------------------------------- disableLearning called here
2016-09-06 13:10:00,6.7,6.613529874311899
2016-09-06 13:11:00,6.7,6.613529874311899
2016-09-06 13:12:00,6.7,6.613529874311899
2016-09-06 13:13:00,6.7,6.613529874311899
2016-09-06 13:14:00,6.7,6.613529874311899
…
2016-09-26 10:38:00,6.3,6.613529874311899
2016-09-26 10:39:00,6.1,6.613529874311899
2016-09-26 11:23:00,6.3,6.613529874311899
2016-09-26 11:24:00,6.3,6.613529874311899
2016-09-26 11:25:00,6.3,6.613529874311899
2016-09-26 11:26:00,6.3,6.613529874311899
2016-09-26 11:27:00,6.5,6.613529874311899
The value (6.61352987…) continues no matter the actual value is.
Thereby, I’m curious the role of disableLearning.
My understanding was it can do some prediction based on the learned pattern up to 1000th record.
Is it natural to see such a fixed prediction value after disabling learning?
Please help this and my other previous question, too… no reply more than 10 days… T.T