deeplearninc / auger-ai

Auger python API and auger cli
MIT License
0 stars 1 forks source link

Dataset create with local file as source always fails #47

Closed derekflint closed 5 years ago

derekflint commented 5 years ago

I have a local file iris.csv in same directory as script. I get:

FileNotFoundError('auger-auger-mt-efl4si/workspace/projects/iris_project/files/mcgJAmW5GZMWKpMeM82qfZ-iris.csv')

from auger.api.dataset import DataSet from auger.api.utils.context import Context from auger.api.project import Project

ctx = Context() project = Project(ctx, project_name) dataset_name = 'Iris'

dataset = DataSet(ctx, project, dataset_name).create('iris.csv') ctx.log('Created dataset %s' % dataset.name)

vlad-dplrn commented 5 years ago

fixed, please verify