layout issue

This commit is contained in:
Steve Nyemba 2019-12-31 23:38:52 -06:00
parent df47ed4cb2
commit ffc4a8a191
1 changed files with 8 additions and 8 deletions

View File

@ -31,14 +31,14 @@ The trainer will store the data on disk (for now) in a structured folder that wi
**Generate a candidate dataset from the learned features** **Generate a candidate dataset from the learned features**
import pandas as pd import pandas as pd
import data.maker import data.maker
df = pd.read_csv('sample.csv') df = pd.read_csv('sample.csv')
id = 'id' id = 'id'
column = 'gender' column = 'gender'
context = 'demo' context = 'demo'
data.maker.generate(data=df,id=id,column=column,logs='logs') data.maker.generate(data=df,id=id,column=column,logs='logs')
## Limitations ## Limitations