Unanswered
Well To Be Honest, We Kind Of Thought It'S Redundant.
Basically Storing Artifacts In Experiments And Having Them Retrieved Quickly From The Code Itself Was Way More Convenient For Us Then To Manually Have To Do Clone/Pull Of The Data...
Example:
Create Da
Well to be honest, we kind of thought it's redundant.
Basically storing artifacts in experiments and having them retrieved quickly from the code itself was way more convenient for us then to manually have to do clone/pull of the data...
Example:
Create dataset:
task = Task.init("Dataset Sample", "version 1") task.upload_artifact("dataset_folder", './my_local_folder') print('task.id = {}'.format(task.id))
Get dataset in runtime:
dataset_task = Task.get_task(task_id='my_task_id') my_local_path = dataset_task.artifacts['dataset_folder'].get()
1K Views
0
Answers
4 years ago
one year ago
Tags