forked from VowpalWabbit/vowpal_wabbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Examples
Ariel Faigon edited this page Jul 15, 2014
·
27 revisions
- RCV1 example. Here we use online gradient descent on TFIDF transformed features while taking advantage of a cache file.
- Malicious URL example. A sequential binary classification problem with temporally correlated data.
- VW has a test suite. tail -n 48 test/RunTests provides several little examples.
- Matrix factorization example
- Multi Class Examples
- Weighted All Pairs (wap) multi class example
- Truncated gradient descent example
- Contextual Bandit Example
- Using active_interactor.py an interactive way to interface with vw's active learning
- using vw varinfo - a vw wrapper to inspect your training-set & model
- Using vw regr - a script for aiding regression applications
- daemon example - how to run vw in daemon mode and get predictions
- vw-top-errors: online learning debugging for better models
The source tree has a sub-directory demo
which includes somewhat more involved examples:
- DNA splice Site recognition dataset from the 2008 Pascal Large Scale Learning Challenge
- Using Searn for Entity Relation Recognition
- MNIST handwritten digit recognition with
--nn
- low-ranked quadratic
--lrq
demo on the movielens data-set --normalized
effect on SGD online learning- Ability of
vw
to separate signal from artificially injected noise
- Zygmunt Zając's FASTML blog several examples of using Vowpal Wabbit in practice.