Sample 6: Train, Test, Evaluate for Regression: Auto Imports Dataset
This experiment demonstrates how to build a regression model to predict the automobile's price. The process includes training, testing and evaluating the model on the Auto Imports dataset.
from azureml import Workspace\nws = Workspace(\n workspace_id='052166e3358045eea7ca16a0ae18271c',\n authorization_token='da8063fd12ad4b69a08bea045242bcd1',\n endpoint='https://studioapi.azureml.net'\n)\nds = ws.datasets['Automobile price data (Raw)']\nframe = ds.to_dataframe()