<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: May Developer Challenge - AI Services - Week 4 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13715710#M2028280</link>
    <description>&lt;P&gt;Yes! I just posted week 5! You have time until the end of next week. That's when I will check the results &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2024 09:31:54 GMT</pubDate>
    <dc:creator>noravonthenen</dc:creator>
    <dc:date>2024-05-29T09:31:54Z</dc:date>
    <item>
      <title>May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13709055#M2028140</link>
      <description>&lt;P&gt;&lt;A href="https://community.sap.com/t5/application-development-discussions/may-developer-challenge-ai-services-week-5/td-p/13715701" target="_self"&gt;CHECK OUT WEEK 5 OF THIS CHALLENGE&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Congratulations! You made it to week 4 of the AI Developer Challenge! This week we will continue where we left of last week and train our regression model using the dataset we uploaded in week 3 and the Data Attribute Recommendation service (DAR).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Before we start, let me give you a brief intro to machine learning so that you know what kind of model we are going to train this week. Machine Learning is a subclass of AI that focuses on the development of algorithms and models that enable computers to learn from and make predictions or decisions based on data. Traditionally, there are three main types of algorithms: supervised, unsupervised, and reinforcement learning. Furthermore, there are also different types of machine learning models like regression, classification, clustering, and association rules. These models serve various purposes and are used in different types of machine learning problems. Regression models are models that are used to predict continuous values, such as predicting a person's salary based on their years of experience and education or predicting avocado prices based on region, type, and the other values in our dataset. For the regression model we will train this week, we are using a supervised approach, as we provide labeled training data - that is a dataset that includes the avocado prices in the training dataset from past purchases to learn from for future predictions.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;There are different supervised regression algorithms that you can use such as Linear Regression, Support Vector Regression, Decision Tree Regression, Gradient Boosting Regression and many more. The Data Attribute Recommendation services uses a neural network for regression that seeks to minimize the mean squared error (MSE). If you want to learn more about the regression capabilities of DAR check out &lt;A href="https://community.sap.com/t5/technology-blogs-by-sap/solving-regression-use-cases-with-data-attribute-recommendation/ba-p/13499171" target="_blank" rel="noopener"&gt;this blog post&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;By using the &lt;EM&gt;GET List Executables&lt;/EM&gt; request, you can get all the Executable IDs. We will use the Executable ID for the regression model: “340abda5-d605-452a-bf4c-169249aab362”&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Assign the Executable ID (“340abda5-d605-452a-bf4c-169249aab362”) to the &lt;EM&gt;trainingExecutableIdRegression &lt;/EM&gt;variable in your environment.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Use the &lt;EM&gt;POST Create Training Configuration Regression&lt;/EM&gt; request to create a training configuration for DAR. This way DAR knows which algorithm and which dataset and dataset schema to use during training. The &lt;EM&gt;datasetSchemaArtifactIdRegression&lt;/EM&gt; and the &lt;EM&gt;datasetArtifactIdRegression&lt;/EM&gt; should have been assigned from last week. If not you can use the &lt;EM&gt;GET List Artifacts&lt;/EM&gt; request to get the missing values.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Now you need to create a training execution using the configuration from step 3. Therefore, we will use the &lt;EM&gt;POST Create Training Execution Regression&lt;/EM&gt; request. If the variable &lt;EM&gt;trainingConfigurationIdRegression&lt;/EM&gt; was not assigned automatically, you can assign it in the Environment yourself. It is the ID that was returned in step 3.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;The current status of your training execution is “UNKNOWN” and the target status is “COMPLETED”. The status might change to “PENDING” and should then change to “RUNNING” as soon as the necessary resources have been allocated and the training started. You can check the status of your training by using the &lt;EM&gt;GET Get Execution Regression&lt;/EM&gt; request.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;The output of the training will be a model artifact and the training status “COMPLETED”.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Use the &lt;EM&gt;GET Get Metric Details&lt;/EM&gt; request to check your models performance! You need to change the Variable from trainingExecutionId to trainingExecutionIdRegression as that is the ID that is being populated in step 5.&lt;/SPAN&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;MSE (Mean Squared Error) is a common metric for measuring the accuracy of a machine learning model in regression problems. It calculates the average squared difference between the predicted and actual values, which tells us about the average magnitude of error in the model. A smaller MSE is more favorable as it suggests lower error magnitudes.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;MAE (Mean Absolute Error) is another metric used for regression models. It calculates the average absolute difference between the predicted and the actual values, giving us another perspective on the error magnitude of the model. Unlike MSE, MAE isn't sensitive to outliers as it doesn’t square the errors in the calculation. A smaller MAE is again more favorable, indicating less difference between predicted and actual values.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;MAPE (Mean Absolute Percentage Error) measures the average absolute percent difference between the predicted and actual values. It is usually used when you want to understand the error in terms of the relative size of the predictions. It is expressed as a percentage, and smaller MAPE values indicate a better fit of the model to the data.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;A feature contribution score is a measure that assigns the importance of each variable in making a prediction and provides insights into which features are most influential in the model. If a feature has a high positive feature contribution score, it means that the feature significantly contributes to pushing the model's output higher for a given prediction. Conversely, if a feature has a high negative score, it plays a significant role in pushing the model's output lower. Knowing which features are most important can help improve your model by focusing on those variables during feature engineering. &lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;&lt;SPAN&gt;SUBMIT a screenshot of your model’s metrics like this:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="noravonthenen_0-1716801742288.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/115816i61ED2AB8794948CE/image-size/large?v=v2&amp;amp;px=999" role="button" title="noravonthenen_0-1716801742288.png" alt="noravonthenen_0-1716801742288.png" /&gt;&lt;/span&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN&gt;Stay tuned for next week to deploy your model and run inferences to see your model in action!&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.sap.com/t5/application-development-discussions/may-developer-challenge-sap-ai-services/m-p/13688151/emcs_t/S2h8ZW1haWx8a3Vkb3N8TFZYQ0Q4SkZaRlFRWld8MTM2ODgxNTF8S1VET1N8aEs#M2027861" target="_self"&gt;&lt;SPAN&gt;Week 1 challenge&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.sap.com/t5/application-development-discussions/may-developer-challenge-sap-ai-services-week-2/td-p/13694818" target="_self"&gt;&lt;SPAN&gt;Week 2 challenge&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.sap.com/t5/application-development-discussions/may-developer-challenge-sap-ai-services-week-3/td-p/13701838" target="_self"&gt;&lt;SPAN&gt;Week 3 challenge&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2024 11:40:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13709055#M2028140</guid>
      <dc:creator>noravonthenen</dc:creator>
      <dc:date>2024-05-30T11:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13710550#M2028160</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/7343"&gt;@noravonthenen&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Hope you doing well.&lt;/P&gt;&lt;P&gt;I followed the steps as define but I am getting below error on step 5. Would appreciate if provide guidance to resolve.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Hira_1-1716459002500.png" style="width: 820px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/114688iDE3A4001A268A3F9/image-dimensions/820x461?v=v2" width="820" height="461" role="button" title="Hira_1-1716459002500.png" alt="Hira_1-1716459002500.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 10:10:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13710550#M2028160</guid>
      <dc:creator>Hira</dc:creator>
      <dc:date>2024-05-23T10:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13710584#M2028162</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/178024"&gt;@Hira&lt;/a&gt;, your model has not been trained yet. How long has the status been unknown now?&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 10:25:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13710584#M2028162</guid>
      <dc:creator>noravonthenen</dc:creator>
      <dc:date>2024-05-23T10:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13710618#M2028165</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/7343"&gt;@noravonthenen&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Almost 30 mins now.&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 10:35:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13710618#M2028165</guid>
      <dc:creator>Hira</dc:creator>
      <dc:date>2024-05-23T10:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13710813#M2028167</link>
      <description>&lt;P&gt;I'm facing the same issue and has also been waiting for 1½ hour now.&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 12:25:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13710813#M2028167</guid>
      <dc:creator>Mikkelj</dc:creator>
      <dc:date>2024-05-23T12:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13710829#M2028168</link>
      <description>&lt;P&gt;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/178024"&gt;@Hira&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/10242"&gt;@Mikkelj&lt;/a&gt;&amp;nbsp;I am looking into it!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 12:45:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13710829#M2028168</guid>
      <dc:creator>noravonthenen</dc:creator>
      <dc:date>2024-05-23T12:45:34Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13710841#M2028170</link>
      <description>&lt;P&gt;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/178024"&gt;@Hira&lt;/a&gt;&amp;nbsp;Can you please provide the&amp;nbsp;&lt;SPAN&gt;landscape and the subaccount ID?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 12:58:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13710841#M2028170</guid>
      <dc:creator>noravonthenen</dc:creator>
      <dc:date>2024-05-23T12:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13710906#M2028171</link>
      <description>&lt;P&gt;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/10242"&gt;@Mikkelj&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/178024"&gt;@Hira&lt;/a&gt;&amp;nbsp;So sorry that is entirely on me! I mixed up the versions of the executable ID! We want to use the latest version 3 and the ID for that is:&amp;nbsp;340abda5-d605-452a-bf4c-169249aab362. Please try to start the training again using that executable ID!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 13:43:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13710906#M2028171</guid>
      <dc:creator>noravonthenen</dc:creator>
      <dc:date>2024-05-23T13:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13711179#M2028181</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/7343"&gt;@noravonthenen&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I am experiencing the same issue as&amp;nbsp;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/178024"&gt;@Hira&lt;/a&gt;&amp;nbsp;at step 5. In the status details there's an error "&lt;SPAN&gt;Execution 'e8937ee4c1f0daee' could not be found". Can this be causing the issue?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MioYasutake_1-1716497423935.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/114930iBCF350A81F047D09/image-size/large?v=v2&amp;amp;px=999" role="button" title="MioYasutake_1-1716497423935.png" alt="MioYasutake_1-1716497423935.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;For the environment variable "&lt;SPAN&gt;trainingExecutableIdRegression",&amp;nbsp; "340abda5-d605-452a-bf4c-169249aab362" has been set.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MioYasutake_2-1716497638555.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/114931iB827FA059318ABEB/image-size/large?v=v2&amp;amp;px=999" role="button" title="MioYasutake_2-1716497638555.png" alt="MioYasutake_2-1716497638555.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 20:54:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13711179#M2028181</guid>
      <dc:creator>MioYasutake</dc:creator>
      <dc:date>2024-05-23T20:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13711862#M2028192</link>
      <description>&lt;P&gt;Your training is COMPLETED. Can you check again with&amp;nbsp;&lt;EM&gt;GET Get Execution Regression? &lt;/EM&gt;And then continue with step 7?&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2024 11:28:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13711862#M2028192</guid>
      <dc:creator>noravonthenen</dc:creator>
      <dc:date>2024-05-24T11:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13712188#M2028200</link>
      <description>&lt;P&gt;Here are my results:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VitaliyR_0-1716574835952.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/115338i866553753F24FE94/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VitaliyR_0-1716574835952.png" alt="VitaliyR_0-1716574835952.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Please note I had to modify the name of the variable in the last step from `&lt;SPAN&gt;&lt;SPAN class=""&gt;{{trainingExecutionId}}&lt;/SPAN&gt;&lt;/SPAN&gt;` to `&lt;SPAN&gt;&lt;SPAN class=""&gt;{{trainingExecutionIdRegression}}` to avoid the Error 500, as `&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;trainingExecutionIdRegression` is the name of the variable populated at the end of the step 4:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VitaliyR_1-1716575266432.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/115339i1E3B14A00612DFF1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VitaliyR_1-1716575266432.png" alt="VitaliyR_1-1716575266432.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Going back to the results it was interesting to see the top 3 contributing scores (if I read the JSON properly):&lt;/P&gt;&lt;P&gt;37.7% Type&lt;BR /&gt;31.0% Region&lt;BR /&gt;17.4% Date (where the price - I just assume - has been changing over time)&lt;/P&gt;&lt;P&gt;Have a good weekend!&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2024 18:31:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13712188#M2028200</guid>
      <dc:creator>Vitaliy-R</dc:creator>
      <dc:date>2024-05-24T18:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13712199#M2028201</link>
      <description>&lt;P&gt;Thanks for your comment Vitaliy! I tried to specify that in step 7 but thanks for making it clear! I will clarify that more in step 7 &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2024 19:03:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13712199#M2028201</guid>
      <dc:creator>noravonthenen</dc:creator>
      <dc:date>2024-05-24T19:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13712213#M2028202</link>
      <description>&lt;P&gt;Completed week 3. Thanks&amp;nbsp;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/7343"&gt;@noravonthenen&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/183"&gt;@Vitaliy-R&lt;/a&gt;&amp;nbsp;for your assistance!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MioYasutake_0-1716582071152.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/115347iC4371C1B0F3548C0/image-size/large?v=v2&amp;amp;px=999" role="button" title="MioYasutake_0-1716582071152.png" alt="MioYasutake_0-1716582071152.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2024 20:21:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13712213#M2028202</guid>
      <dc:creator>MioYasutake</dc:creator>
      <dc:date>2024-05-24T20:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13712378#M2028204</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I get the following error.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Alpesa1990_0-1716640536830.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/115418i5730C9442F8C7573/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Alpesa1990_0-1716640536830.png" alt="Alpesa1990_0-1716640536830.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;does it happen to anyone else?&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;</description>
      <pubDate>Sat, 25 May 2024 12:36:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13712378#M2028204</guid>
      <dc:creator>Alpesa1990</dc:creator>
      <dc:date>2024-05-25T12:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13712403#M2028206</link>
      <description>&lt;P&gt;Your execution is still running so the model is not finished training. Please check again &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 25 May 2024 15:11:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13712403#M2028206</guid>
      <dc:creator>noravonthenen</dc:creator>
      <dc:date>2024-05-25T15:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13712405#M2028207</link>
      <description>&lt;P&gt;HI Nora!&lt;/P&gt;&lt;P&gt;The model has been running from yesterday. I didn´t have this error on my last check yesterday and today I have this error and still persist.&lt;/P&gt;&lt;P&gt;Thanks by your attention!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 25 May 2024 16:26:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13712405#M2028207</guid>
      <dc:creator>Alpesa1990</dc:creator>
      <dc:date>2024-05-25T16:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13712422#M2028209</link>
      <description>&lt;P&gt;Btw, because I was using VS Code with Postman extension, I did not know that the Postman application has this nice "Visualize" tab to have a nicer overview of the data from the response:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="VitaliyR_0-1716675437251.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/115431i85C35F9611A2EB4F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VitaliyR_0-1716675437251.png" alt="VitaliyR_0-1716675437251.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 25 May 2024 22:17:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13712422#M2028209</guid>
      <dc:creator>Vitaliy-R</dc:creator>
      <dc:date>2024-05-25T22:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13712475#M2028210</link>
      <description>&lt;P&gt;Getting below error for step 1 please help.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gphadnis2000_0-1716705509900.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/115471iA43504DCF3CC5D1C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gphadnis2000_0-1716705509900.png" alt="gphadnis2000_0-1716705509900.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 May 2024 06:38:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13712475#M2028210</guid>
      <dc:creator>gphadnis2000</dc:creator>
      <dc:date>2024-05-26T06:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13712590#M2028213</link>
      <description>&lt;P&gt;Here's my submission for this week:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2024-05-26 19_58_22-Window.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/115534iA80BA7436E0FB1AE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2024-05-26 19_58_22-Window.png" alt="2024-05-26 19_58_22-Window.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 26 May 2024 18:00:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13712590#M2028213</guid>
      <dc:creator>M-K</dc:creator>
      <dc:date>2024-05-26T18:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: May Developer Challenge - AI Services - Week 4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13713009#M2028223</link>
      <description>&lt;P&gt;have you refreshed your token?&lt;/P&gt;</description>
      <pubDate>Mon, 27 May 2024 08:01:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/may-developer-challenge-ai-services-week-4/m-p/13713009#M2028223</guid>
      <dc:creator>noravonthenen</dc:creator>
      <dc:date>2024-05-27T08:01:27Z</dc:date>
    </item>
  </channel>
</rss>

