You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/cognitive-services/personalizer/includes/quickstart-sdk-csharp.md
+55Lines changed: 55 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -534,6 +534,61 @@ Run the application with the dotnet `run` command from your application director
534
534
dotnet run
535
535
```
536
536
537
+
## Generate sample events for analysis
538
+
539
+
You can easily generate 5,000 events from this quickstart demo scenario, which is sufficient to get experience with using Apprentice mode, Online mode, running offline evaluations, and creating feature evaluations. Simply replace the `Main()` method of the above code in the `Run a Rank and Reward cycle` section with:
540
+
541
+
```csharp
542
+
543
+
staticvoidMain(string[] args)
544
+
{
545
+
intiteration=1;
546
+
intrunLoop=0;
547
+
548
+
// Get the actions list to choose from personalizer with their features.

538
593
539
594
The [source code for this quickstart](https://github.com/Azure-Samples/cognitive-services-quickstart-code/tree/master/dotnet/Personalizer) is available.
0 commit comments