Skip to content
This repository was archived by the owner on May 24, 2018. It is now read-only.

Latest commit

 

History

History
22 lines (14 loc) · 661 Bytes

File metadata and controls

22 lines (14 loc) · 661 Bytes

Linear Method

Given data pairs (x,y), the linear method learns the model vector w by minizing the following objective function:

obj

where is the loss function such as logistic loss and hinge loss.

Quick start

Go the root directory of wormhole, then build by make linear. Next try a small dataset using 2 worker and 1 server:

tracker/dmlc_local.py -n 2 -s 1 bin/linear.dmlc learn/linear/guide/demo.conf

More