docs: Update PoissonRegression.ipynb

This commit is contained in:
Jeremy Bradley-Silverio Donato
2022-01-06 17:46:36 +01:00
committed by Benoit Chevallier
parent 3cfba99c7c
commit cb660d89f9

View File

@@ -575,7 +575,7 @@
"\n",
"Here is where we encounter one of the limitations of our framework. We perform a dot product in the prediction, in the QuantizedLinear class, but in our framework the maximum integer size is, for now, limited to 7 bits. As every multiplication doubles the number of bits of precision of the inputs performing 57 multiplication-additions of integers to compute w.x would quickly overflow 7 bits. \n",
"\n",
"As a workaround the limited accumulator resolution, we perform PCA to reduce dimensionality from 57 to 14 dimensions and train our multi-variate model in this reduced dimensionality space. However, we also train a reference model on all of the original features. "
"As a workaround to the limited accumulator resolution, we perform PCA to reduce dimensionality from 57 to 14 dimensions and train our multi-variate model in this reduced dimensionality space. However, we also train a reference model on all of the original features. "
]
},
{