forked from dotnet/machinelearning-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vsts-dotnet-ci.yml
145 lines (127 loc) · 4.79 KB
/
.vsts-dotnet-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
phases:
- phase: CreditCardFraudDetection
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: Build CreditCardFraudDetection (BinaryClassification)
inputs:
projects: '.\samples\csharp\getting-started\BinaryClassification_CreditCardFraudDetection\CreditCardFraudDetection.sln'
- phase: SentimentAnalysis
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: Build SentimentAnalysis (BinaryClassification)
inputs:
projects: '.\samples\csharp\getting-started\BinaryClassification_SentimentAnalysis\SentimentAnalysis-Solution.sln'
- phase: CustomerSegmentation
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: Build CustomerSegmentation (Clustering)
inputs:
projects: '.\samples\csharp\getting-started\Clustering_CustomerSegmentation\CustomerSegmentation.sln'
- phase: IrisClustering
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: Build Iris (Clustering)
inputs:
projects: '.\samples\csharp\getting-started\Clustering_Iris\Clustering_Iris.sln'
- phase: TensorFlowScorer
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: TensorFlow Scorer (Image Classification)
inputs:
projects: '.\samples\csharp\getting-started\DeepLearning_ImageClassification_TensorFlow\TF.Model.Scorer.sln'
- phase: TensorFlowFeaturizerEstimator
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: TensorFlow Featurizer Estimator (Image Classification)
inputs:
projects: '.\samples\csharp\getting-started\DeepLearning_TensorFlowEstimator\TF.Featurizer.Estimator.sln'
- phase: IrisMultiClass
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: Build Iris (MulticlassClassification)
inputs:
projects: '.\samples\csharp\getting-started\MulticlassClassification_Iris\MulticlassClassification_Iris.sln'
- phase: BikeSharingDemand
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: Build BikeSharingDemand (Regression)
inputs:
projects: '.\samples\csharp\getting-started\Regression_BikeSharingDemand\BikeSharingDemand.sln'
- phase: TaxiFarePrediction
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: Build TaxiFarePrediction (Regression)
inputs:
projects: '.\samples\csharp\getting-started\Regression_TaxiFarePrediction\TaxiFarePrediction.sln'
- phase: GitHubLabeler
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: Build GitHubLabeler
inputs:
projects: '.\samples\csharp\end-to-end-apps\MulticlassClassification-GitHubLabeler\GitHubLabeler.sln'
- phase: eShopDashboardML
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: Build eShopDashboardML (Regression)
inputs:
projects: '.\samples\csharp\end-to-end-apps\Regression-SalesForecast\eShopDashboardML.sln'
- phase: MovieRecommenderE2E
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: Build MovieRecommender E2E (Recommendation)
inputs:
projects: '.\samples\csharp\end-to-end-apps\Recommendation-MovieRecommender\Recommendation_MovieRecommenderApp.sln'
- phase: MovieRecommenderMF
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: Build MovieRecommender MF (Recommendation)
inputs:
projects: '.\samples\csharp\getting-started\MatrixFactorization_MovieRecommendation\MovieRecommendation.sln'
- phase: Mnist
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: Build Mnist (MulticlassClassification)
inputs:
projects: '.\samples\csharp\getting-started\MulticlassClassification_mnist\MulticlassClassification_mnist.sln'
- phase: ShampooSalesSpikeAndChangeDetection
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: Build Shampoo Sales spike and change Detection (Time Series)
inputs:
projects: '.\samples\csharp\getting-started\SpikeDetection_ShampooSales\ShampooSales.sln'
- phase: PowerConsumptionAnomalyDetection
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: Build Power Anomaly Detection (Time Series)
inputs:
projects: '.\samples\csharp\getting-started\TimeSeries_PowerAnomalyDetection\PowerAnomalyDetection.sln'
- phase: YoloOnnxScorer
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: Build Onnx scorer (Object Detection)
inputs:
projects: '.\samples\csharp\getting-started\DeepLearning_ObjectDetection_Onnx\ObjectDetection.sln'
- phase: ShampooSalesSpikeChangeDetectionE2E
queue: Hosted VS2017
steps:
- task: DotNetCoreCLI@2
displayName: Build Shampoo Sales spike and change Detection E2E(Time Series)
inputs:
projects: '.\samples\csharp\csharp\end-to-end-apps\AnomalyDetection-ShampooSales-WinForms\AnomalyDetectionConsoleApp\AnomalyDetectionConsoleApp.csproj'