Skip to content

Commit 82edea8

Browse files
ryoma-nagataSyntaxC4
authored andcommitted
Update iot-hub-weather-forecast-machine-learning.md
This sample didn't work. Fix it to a properly working sample.
1 parent 512db54 commit 82edea8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/iot-hub/iot-hub-weather-forecast-machine-learning.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ In this section, you validate the model, set up a predictive web service based o
202202
WITH machinelearning AS (
203203
SELECT EventEnqueuedUtcTime, temperature, humidity, machinelearning(temperature, humidity) as result from [YourInputAlias]
204204
)
205-
Select System.Timestamp time, CAST (result.[temperature] AS FLOAT) AS temperature, CAST (result.[humidity] AS FLOAT) AS humidity, CAST (result.[Scored Probabilities] AS FLOAT ) AS 'probabalities of rain'
205+
Select System.Timestamp time, CAST (result.[temperature] AS FLOAT) AS temperature, CAST (result.[humidity] AS FLOAT) AS humidity, CAST (result.[scored probabilities] AS FLOAT ) AS 'probabalities of rain'
206206
Into [YourOutputAlias]
207207
From machinelearning
208208
```
@@ -236,4 +236,4 @@ Run the client application to start collecting and sending temperature and humid
236236

237237
You’ve successfully used Azure Machine Learning to produce the chance of rain based on the temperature and humidity data that your IoT hub receives.
238238

239-
[!INCLUDE [iot-hub-get-started-next-steps](../../includes/iot-hub-get-started-next-steps.md)]
239+
[!INCLUDE [iot-hub-get-started-next-steps](../../includes/iot-hub-get-started-next-steps.md)]

0 commit comments

Comments
 (0)