Skip to content

Instantly share code, notes, and snippets.

@frx
frx / OnlineSGD.cpp
Created June 16, 2011 19:48
Online SGD (excerpt)
/* Training function for SVMSGD, online version */
bool CSVMSGD::train(CStreamingDotFeatures* data)
{
data->start_parser();
int32_t w_default_dim=100;
w=new float64_t[w_default_dim];
float64_t bias=0;
float64_t lambda=1;