You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently datasets can only be given ontologies. I.e. project.datasets.create(..., ontology_ids=...). It would be nice to be able to pass an existing recipe, for example reusing recipes across multiple datasets. My current workaround is quite ugly:
dataset = project.datasets.create(name)
[r.delete() for r in dataset.recipes.list()]
dataset.switch_recipe(recipe=recipe)
dataset.update()
The text was updated successfully, but these errors were encountered:
Hi, Thank you for submitting your request. We have logged it so the team can use your feedback for future development Support ticket link https://support.dataloop.ai/helpdesk/tickets/2360 Thanks Dataloop Support Team Please visit our documentation for additional information Here Our status page Link
--- Best regards, Dataloop support team
On
Wed, 25 Aug at 7:53 PM
, dataloop-ai/dtlpy ***@***.***> wrote:
Currently datasets can only be given ontologies. I.e. project.datasets.create(..., ontology_ids=...). It would be nice to be able to pass an existing recipe, for example reusing recipes across multiple datasets. My current workaround is quite ugly:
dataset = project.datasets.create(name)
[r.delete() for r in dataset.recipes.list()]
dataset.switch_recipe(recipe=recipe)
dataset.update()
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or unsubscribe. Triage notifications on the go with GitHub Mobile for iOS or Android.
Currently datasets can only be given ontologies. I.e.
project.datasets.create(..., ontology_ids=...)
. It would be nice to be able to pass an existing recipe, for example reusing recipes across multiple datasets. My current workaround is quite ugly:The text was updated successfully, but these errors were encountered: