forked from VowpalWabbit/vowpal_wabbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[py] add test based on example (VowpalWabbit#2617)
* [py] add test based on example * trigger build again * remove print Co-authored-by: Jack Gerrits <[email protected]>
- Loading branch information
1 parent
f837b28
commit e1a9485
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import pandas as pd | ||
import sklearn as sk | ||
import numpy as np | ||
from vowpalwabbit import pyvw | ||
|
||
import pytest | ||
|
||
def test_getting_started_example(): | ||
train_data = [{'action': 1, 'cost': 2, 'probability': 0.4, 'feature1': 'a', 'feature2': 'c', 'feature3': ''}, | ||
{'action': 3, 'cost': 0, 'probability': 0.2, 'feature1': 'b', 'feature2': 'd', 'feature3': ''}, | ||
{'action': 4, 'cost': 1, 'probability': 0.5, 'feature1': 'a', 'feature2': 'b', 'feature3': ''}, | ||
{'action': 2, 'cost': 1, 'probability': 0.3, 'feature1': 'a', 'feature2': 'b', 'feature3': 'c'}, | ||
{'action': 3, 'cost': 1, 'probability': 0.7, 'feature1': 'a', 'feature2': 'd', 'feature3': ''}] | ||
|
||
train_df = pd.DataFrame(train_data) | ||
|
||
train_df['index'] = range(1, len(train_df) + 1) | ||
train_df = train_df.set_index("index") | ||
|
||
|
||
test_data = [{'feature1': 'b', 'feature2': 'c', 'feature3': ''}, | ||
{'feature1': 'a', 'feature2': '', 'feature3': 'b'}, | ||
{'feature1': 'b', 'feature2': 'b', 'feature3': ''}, | ||
{'feature1': 'a', 'feature2': '', 'feature3': 'b'}] | ||
|
||
test_df = pd.DataFrame(test_data) | ||
|
||
# Add index to data frame | ||
test_df['index'] = range(1, len(test_df) + 1) | ||
test_df = test_df.set_index("index") | ||
|
||
vw = pyvw.vw("--cb 4") | ||
|
||
for i in train_df.index: | ||
action = train_df.loc[i, "action"] | ||
cost = train_df.loc[i, "cost"] | ||
probability = train_df.loc[i, "probability"] | ||
feature1 = train_df.loc[i, "feature1"] | ||
feature2 = train_df.loc[i, "feature2"] | ||
feature3 = train_df.loc[i, "feature3"] | ||
|
||
learn_example = str(action) + ":" + str(cost) + ":" + str(probability) + " | " + str(feature1) + " " + str(feature2) + " " + str(feature3) | ||
vw.learn(learn_example) | ||
|
||
assert vw.get_prediction_type() == vw.pMULTICLASS, "prediction_type should be multiclass" | ||
|
||
for j in test_df.index: | ||
feature1 = test_df.loc[j, "feature1"] | ||
feature2 = test_df.loc[j, "feature2"] | ||
feature3 = test_df.loc[j, "feature3"] | ||
choice = vw.predict("| "+str(feature1)+" "+str(feature2)+" "+str(feature3)) | ||
assert isinstance(choice, int), "choice should be int" | ||
assert choice == 3, "predicted action should be 3" | ||
|
||
vw.finish() |