-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCTimeHist.cpp
159 lines (140 loc) · 4.3 KB
/
CTimeHist.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#include "CTimeHist.h"
using namespace std;
CTimeHist::CTimeHist(int idd)
{
id=idd;
firstTime = -1;
lastTime = -1;
measurements = 0;
maxPeriod = 0;
numElements = 0;
type = TT_HISTOGRAM;
}
void CTimeHist::init(int iMaxPeriod,int elements,int models)
{
maxPeriod = iMaxPeriod;
maxPeriod = 86400;
numElements = elements;
numModels = models;
predictHistogram = new float[numElements];
storedHistogram = new float[numElements];
measurementsHistogram = new int[numElements];
for (int i=0;i<numElements;i++){
predictHistogram[i] = 0.5;
measurementsHistogram[i] = 0;
storedHistogram[i] = 0;
}
}
CTimeHist::~CTimeHist()
{
delete[] predictHistogram;
delete[] measurementsHistogram;
delete[] storedHistogram;
}
// adds new state observations at given times
int CTimeHist::add(uint32_t time,float state)
{
if (measurements == 0) firstTime = time;
lastTime = time;
int index = ((time%maxPeriod)*numElements/maxPeriod)%numElements;
storedHistogram[index] += state;
measurementsHistogram[index] ++;
measurements++;
return 0;
}
/*not required in incremental version*/
void CTimeHist::update(int modelOrder,unsigned int* times,float* signal,int length)
{
for (int i=0;i<numElements;i++){
if (measurementsHistogram[i] > 0) predictHistogram[i] = storedHistogram[i]/measurementsHistogram[i];
}
}
/*text representation of the fremen model*/
void CTimeHist::print(bool verbose)
{
std::cout << "Model " << id << " Size: " << measurements << " " << " Bins: " << numElements << " ";
if (verbose){
std::cout << "Bin values: ";
for (int i = 0;i<numElements;i++) std::cout << storedHistogram[i] << " ";
}
std::cout << std::endl;
}
float CTimeHist::estimate(uint32_t time)
{
int index = ((time%maxPeriod)*numElements/maxPeriod)%numElements;
float estimate = 1.0/numModels;
if (measurementsHistogram[index] > 0) estimate = storedHistogram[index]/measurementsHistogram[index];
float saturation = 0.001;
if (estimate > 1.0-saturation) estimate = 1.0-saturation;
if (estimate < 0.0+saturation) estimate = 0.0+saturation;
return estimate;
}
float CTimeHist::predict(uint32_t time)
{
float estimate = predictHistogram[((time%maxPeriod)*numElements/maxPeriod)%numElements];
float saturation = 0.001;
if (estimate > 1.0-saturation) estimate = 1.0-saturation;
if (estimate < 0.0+saturation) estimate = 0.0+saturation;
return estimate;
}
int CTimeHist::save(const char* name,bool lossy)
{
FILE* file = fopen(name,"w");
save(file);
fclose(file);
return 0;
}
int CTimeHist::load(const char* name)
{
FILE* file = fopen(name,"r");
load(file);
fclose(file);
return 0;
}
int CTimeHist::save(FILE* file,bool lossy)
{
double *array = new double[MAX_TEMPORAL_MODEL_SIZE*sizeof(double)];
int len = exportToArray(array,MAX_TEMPORAL_MODEL_SIZE);
fwrite(array,sizeof(double),len,file);
delete[] array;
return -1;
}
int CTimeHist::load(FILE* file)
{
double *array = new double[MAX_TEMPORAL_MODEL_SIZE*sizeof(double)];
int len = fread(array,sizeof(double),MAX_TEMPORAL_MODEL_SIZE,file);
importFromArray(array,len);
delete[] array;
return len;
}
int CTimeHist::exportToArray(double* array,int maxLen)
{
int pos = 0;
array[pos++] = type;
array[pos++] = numElements;
array[pos++] = numModels;
array[pos++] = id;
array[pos++] = measurements;
for (int i = 0;i<numElements && pos < MAX_TEMPORAL_MODEL_SIZE;i++) array[pos++] = (double)storedHistogram[i];
for (int i = 0;i<numElements && pos < MAX_TEMPORAL_MODEL_SIZE;i++) array[pos++] = (double)measurementsHistogram[i];
if (pos == MAX_TEMPORAL_MODEL_SIZE) std::cout << "Could not save the model dur to its size" << std::endl;
return pos;
}
int CTimeHist::importFromArray(double* array,int len)
{
int pos = 0;
type = (ETemporalType)array[pos++];
if (type != TT_HISTOGRAM) std::cerr << "Error loading the model, type mismatch." << std::endl;
numElements = array[pos++];
numModels = array[pos++];
id = array[pos++];
measurements = array[pos++];
delete[] storedHistogram;
delete[] measurementsHistogram;
init(maxPeriod,numElements,numModels);
for (int i = 0;i<numElements && pos < MAX_TEMPORAL_MODEL_SIZE;i++)storedHistogram[i]=array[pos++];
for (int i = 0;i<numElements && pos < MAX_TEMPORAL_MODEL_SIZE;i++)measurementsHistogram[i]=array[pos++];
update(numElements);
if (pos == MAX_TEMPORAL_MODEL_SIZE) std::cout << "Model was not properly saved before." << std::endl;
return pos;
}