3-ftransform-forecasting #5

Open
romanov73 wants to merge 27 commits from 3-f-transform into master
Showing only changes of commit ffe303c7af - Show all commits

View File

@ -104,15 +104,15 @@ public class FTransform extends Method {
return FTransformModel.getAvailableParameters();
}
private AComponent findFuzzyValueByPrevious(List<AComponent> fuzzyTimeSeries, AComponent currentFuzzyValue) {
Map<AComponent, Integer> mostFrequentValues = new HashMap<>();
for (int i = 0; i < fuzzyTimeSeries.size() - 1; i++) {
if (fuzzyTimeSeries.get(i).equals(currentFuzzyValue)) {
mostFrequentValues.put(fuzzyTimeSeries.get(i + 1), mostFrequentValues.getOrDefault(fuzzyTimeSeries.get(i + 1), 0) + 1);
}
}
mostFrequentValues.entrySet().stream()
}
// private AComponent findFuzzyValueByPrevious(List<AComponent> fuzzyTimeSeries, AComponent currentFuzzyValue) {
// Map<AComponent, Integer> mostFrequentValues = new HashMap<>();
// for (int i = 0; i < fuzzyTimeSeries.size() - 1; i++) {
// if (fuzzyTimeSeries.get(i).equals(currentFuzzyValue)) {
// mostFrequentValues.put(fuzzyTimeSeries.get(i + 1), mostFrequentValues.getOrDefault(fuzzyTimeSeries.get(i + 1), 0) + 1);
// }
// }
// mostFrequentValues.entrySet().stream()
// }
@Override
public String getName() {