This article presents a method of loading a managed (C#) dll in a native (C++) process by using the Common Language Runtime (CLR). Basically, it refers to calling a C# method from C/C++ and enables calling managed code from native applications. This method was tested on the .Net Framework 4.0. The trick consists in creating and hosting a CLR instance in the C++ process and then using it to load a managed dll. Hosting the CLR in a Native Process The following dependencies will be required 1 2 ...| coding.vision
So… I’ll try to explain here the concept of gradient descent as simple as possible in order to provide some insight of what’s happening from a mathematical perspective and why the formula works. I’ll try to keep it short and split this into 2 chapters: theory and example - take it as a ELI5 linear regression tutorial. Feel free to skip the mathy stuff and jump directly to the example if you feel that it might be easier to understand. Theory and Formula For the sake of simplicity, we...| coding.vision