983

Results 13 comments of 983

Your description of how the algorithm works sounds correct to me. The trick is that with a fourier series we can approximate any curve: ![house](https://user-images.githubusercontent.com/11274194/36504798-fed20aea-1751-11e8-924f-9f989827516f.png) If we do that with...

I believe that the correct solution is to define NOMINMAX in the settings of your visual studio project. Adding fixes for every compiler in every file does not scale. See...

It's ok. I always wanted to improve the performance of this library anyway (and write proper documentation), but I just can't find the time. Maybe in a few months... For...

I also got the problem of slow `glewInit()`, but on Windows 8.1 and with 64 bit application. My laptop has Intel and NVIDIA GPU. Initialization is slow for NVIDIA only:...

@olearycrew The GitLab API currently does not allow bulk data collection. > 1.3. When using, or attempting to use, the GitLab APIs, you agree: > [...] > 1.3.9. Not to...

I can see the following options: - Look at the generated assembly code and if there is something fishy in there, move the language from the `Natively compiled, statically typed`...

Since this issue was closed as "completed" instead of closed as "not planned", I was curious whether GitLab support had been implemented. I downloaded a random dump and checked whether...

Understandable. Thank you for the clarification.

The function [`bool can_convert_to_int(int *result)`](https://github.com/983/Num/blob/35a799add8507b75625fc27531db3eea08c7c344/num.hpp#L596) converts a `Num` to int, but only if it would fit. I also thought about overloading cast to int, but it seemed too unsafe. I...

I was wondering about the minus-sign, too. Also I am confused about the division by `n`, although it probably doesn't matter since it only changes the learning rate. ``` def...