Updated on 2024-08-14 GMT+08:00
Example
Unified storage is mainly used in the job phase. The following code uses a workflow that contains only the training phase as an example.
from modelarts import workflow as wf # Create an InputStorage object. Assume that the root directory of the Storage object is /root/input-data/. input_storage = wf.data.InputStorage(name="input_storage_name", title="title_info", description="description_info") # Only name is mandatory. # Create an OutputStorage object. Assume that the root directory of the Storage object is /root/output/. output_storage = wf.data.OutputStorage(name="output_storage_name", title="title_info", description="description_info") # Only name is mandatory. # Use JobStep to define a training phase, and set OBS paths for storing inputs and outputs. job_step = wf.steps.JobStep( name="training_job", # Name of a training phase. The name contains a maximum of 64 characters, including only letters, digits, underscores (_), and hyphens (-). It must start with a letter and must be unique in a workflow. title="Image classification training", # Title, which defaults to the value of name algorithm=wf.AIGalleryAlgorithm(subscription_id="subscription_ID", item_version_id="item_version_ID"), # Algorithm used for training. In this example, an algorithm subscribed to from AI Gallery is used. inputs=[ wf.steps.JobInput(name="data_url_1", data=wf.data.OBSPath(obs_path = input_storage.join("/dataset1/new.manifest"))), # The obtained path is /root/input-data/dataset1/new.manifest. wf.steps.JobInput(name="data_url_2", data=wf.data.OBSPath(obs_path = input_storage.join("/dataset2/new.manifest"))) # The obtained path is /root/input-data/dataset2/new.manifest. ], outputs=wf.steps.JobOutput(name="train_url", obs_config=wf.data.OBSOutputConfig(obs_path=output_storage.join("/model/"))), # The training output path is /root/output/Execution ID/model/. spec=wf.steps.JobSpec( resource=wf.steps.JobResource( flavor=wf.Placeholder(name="train_flavor", placeholder_type=wf.PlaceholderType.JSON, description="Training flavor") ), log_export_path=wf.steps.job_step.LogExportPath(obs_url=output_storage.join("/logs/")) # The log output path is /root/output/Execution ID/logs/. )# Training flavors ) # Define a workflow that contains only the job phase. workflow = wf.Workflow( name="test-workflow", desc="this is a test workflow", steps=[job_step], storages=[input_storage, output_storage] # Add Storage objects used in this workflow. )
Parent topic: Unified Storage
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
The system is busy. Please try again later.
For any further questions, feel free to contact us through the chatbot.
Chatbot