Creating models considering multiple variables

0

Hello: I'm using Forecast to predict Temperature/Humidity/Wind Speed/etc. So far, I'm able to create the models for each parameter individually, but I think the model would benefit considering the other variables. For example, to predict the temperature, it could consider Humidity, Wind Speed, etc to train the model. But I don't see how to do this, as when I import the data, the Schema builder only allows me to include one column of type float, so if I train for Temperature (float type), no other float numbers are allowed (only strings). Is this doable? How should I define the other columns (Humidity, etc.)

Thanks

질문됨 일 년 전331회 조회
1개 답변
0

Hi User,

You should be able to add additional attributes of type float. Here is a sample screenshot of how it can be done: Enter image description here

This is done via the schema builder on AWS Console. Alternatively, it can be done via the JSON Schema like this:

        {
		"AttributeName": "target_value",
		"AttributeType": "float"
	},
	{
		"AttributeName": "humidity ",
		"AttributeType": "float"
	},
	{
		"AttributeName": "temperature",
		"AttributeType": "float"
	},
	{
		"AttributeName": "Wind Speed",
		"AttributeType": "float"
	}

Hope this works for you!

profile pictureAWS
전문가
ljunkai
답변함 일 년 전
  • Hello junkai:

    When I try that, I get this error: We were unable to create your dataset. Invalid target time series schema: all non-reserved columns should be of string type. Which is the reason I posted my question...

    Thanks

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠