Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. P(y=true|x) = 1 / (1 + exp(-(<w, x> + b)))
  2.  
  3. cl(x) = true iff 1 / (1 + exp(-(<w, x> + b))) > 0.5
  4. cl(x) = true iff <w, x> + b > 0
  5. cl(x) = true iff <w, x> > -b
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement