-
Notifications
You must be signed in to change notification settings - Fork 13
/
rfp.html
3390 lines (3154 loc) · 93.2 KB
/
rfp.html
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: The Institute for Ethical AI & Machine Learning
description: The Institute for Ethical AI & Machine Learning is a Europe-based research centre that brings togethers technologists, academics and policy-makers to develop industry frameworks that support the responsible development, design and operation of machine learning systems.
---
<html>
<head>
{% include header.html %}
</head>
<body>
<div id="page-wrapper">
{% include navbar.html %}
<!-- Main -->
<div id="main" class="wrapper style1">
<div class="container">
<header class="major">
<h2>AI-RFX Procurement Framework v1.0</h2>
<p>Online Version for the AI Request for Proposal Template, AI & Machine Learning Solutions.</p>
</header>
<!-- Text -->
<section>
<h2 class="western"><a name="docs-internal-guid-c1391efa-7fff-26d1-d74b-991b5583401a"></a>
0 - Introduction</h2>
<hr>
<h3 class="western">0.1 - Overview</h3>
<p>The “AI Request for Proposal v1.0” is part of the <a href="https://ethical.institue/rfx.html">AI-RFX
Procurement Framework</a>. The objective of this document is to
empower industry practitioners looking to procure AI systems. It
should serve as a guide and a reference when putting together a
tender or when procuring a machine learning solution. This template
should also serve as a guide for suppliers that are looking to put
together a proposal for a machine learning solution. This way
suppliers can ensure they are following best practices in responsible
machine learning development.
</p>
<p>This AI-RFP template has been built using our “Machine Learning
Maturity Model” as its core, which is <a href="https://ethical.institute/rfx.html#model">available
for download</a> at our website. The “Machine Learning Maturity
Model” goes beyond the machine learning algorithms themselves, and
provides an assessment criteria to evaluate the maturity of the
infrastructure and processes around the algorithms. The concept of
“Maturity” is not just defined as a matter of technical
excellence, scientific rigor, and robust products. It also
essentially involves responsible innovation and development
processes, with sensitivity to the relevant domains of expert
knowledge and consideration of all relevant direct and indirect
stakeholders.
</p>
<p>All the frameworks under the AI-RFX Procurement Framework,
including the “AI Request for Proposal”, the “Machine Learning
Maturity Model”, and the “AI Tender Competition” templates have
been released as <a href="https://docs.google.com/document/d/1ecJPiCAc0EkAbU_L5f2yxgucAfThynQLc1Qn37jR4Gg/edit#heading=h.5o0sbykhosr6">fully
open source</a>. This allows suppliers and companies to contribute
and update these templates, helping raise the bar for AI safety,
quality and performance.
</p>
<hr>
<h3 class="western">0.2 - About Us</h3>
<p>The Institute for Ethical AI & Machine Learning is a Europe-based
research centre that carries out world class research into
responsible machine learning systems. We are formed by cross
functional teams of applied STEM researchers, philosophers, industry
experts, data scientists and software engineers.</p>
<p>Our vision is to mitigate risks of AI and unlock its full
potential through frameworks that ensure ethical and conscientious
development of intelligent systems across industrial sectors. We are
building the Bell Labs of the 21st Century by delivering breakthrough
contributions through applied AI research. You can find more
information about us at <a href="https://ethical.institute/">https://ethical.institute</a>.</p>
<hr>
<h3 class="western" >0.3 -
Motivation
<img src="images/MLENG-3.png" name="Image1" width="500" height="500" border="0" style="float:right" align="bottom">
</h3>
<p>There is currently a growing number of companies that are working
towards introducing machine learning systems to automate critical
processes at scale. This has required the “productisation” of
machine learning models, which introduces new complexities. This
complexity revolves around a new set of roles that fall under the
umbrella of “Machine Learning Engineering”. This new set of roles
fall in the intersection between DevOps, data science and
software engineering.</p>
<br style="clear: both">
<img src="images/MLENG-4.png" name="Image2" width="500" height="500" style="float:left" border="0" align="bottom">
<p><br>
</p>
<p>To make things harder, the deployment of machine learning
solutions in industry introduces an even bigger complexity. This
involves the intersection of the new abstract “Machine Learning
Engineering” roles, together with the industry domain experts and
policy makers.</p>
<p>Because of this, there is a strong need to set the AI & ML
standards, so practitioners are empowered to raise the bar for
safety, quality and performance around AI solutions. The AI-RFX
Procurement Framework aims to achieve the first steps towards
this.
</p>
<br style="clear: both">
<hr>
<h3 class="western">0.4 - How to use this document</h3>
<h4 class="western">0.4.1 - Using as reference</h4>
<p>Many procurement managers may already own internally-approved RFP
templates or RFP portals with standard entries. If that is the case,
this document can be treated as a reference to obtain insights from
key sections specific to machine learning, such as “<a href="https://docs.google.com/document/d/1ecJPiCAc0EkAbU_L5f2yxgucAfThynQLc1Qn37jR4Gg/edit#heading=h.lqzrc25boiog">Chapter
3: Tender Process</a>” and “<a href="https://docs.google.com/document/d/1ecJPiCAc0EkAbU_L5f2yxgucAfThynQLc1Qn37jR4Gg/edit#heading=h.84prvsfhx8jz">Chapter
4: Detailed Scope</a>”. The machine learning specific sections in
this document include:</p>
<ul>
<li>
<p ><a href="https://docs.google.com/document/d/1ecJPiCAc0EkAbU_L5f2yxgucAfThynQLc1Qn37jR4Gg/edit#heading=h.3498ud5xwm8">2.5
- Benchmarks & Metrics</a></p>
</li><li>
<p ><a href="https://docs.google.com/document/d/1ecJPiCAc0EkAbU_L5f2yxgucAfThynQLc1Qn37jR4Gg/edit#heading=h.856p9h8sb15f">3.2
- Assessment criteria</a></p>
</li><li>
<p ><a href="https://docs.google.com/document/d/1ecJPiCAc0EkAbU_L5f2yxgucAfThynQLc1Qn37jR4Gg/edit#heading=h.j80rdz2d169d">3.5
- Project timelines</a></p>
</li><li>
<p ><a href="https://docs.google.com/document/d/1ecJPiCAc0EkAbU_L5f2yxgucAfThynQLc1Qn37jR4Gg/edit#heading=h.3kr1iqu4gs2f">4.1
- Competition</a></p>
</li><li>
<p ><a href="https://docs.google.com/document/d/1ecJPiCAc0EkAbU_L5f2yxgucAfThynQLc1Qn37jR4Gg/edit#heading=h.6bx55ewm3guw">4.4
- Implementation</a></p>
</li><li>
<p ><a href="https://docs.google.com/document/d/1ecJPiCAc0EkAbU_L5f2yxgucAfThynQLc1Qn37jR4Gg/edit#heading=h.juw7ka3mgoc">4.7
- Required service levels</a></p>
</li></ul>
<h4 class="western">0.4.2 - Structure</h4>
<p>The document consists of multiple chapters, each chapter with a
set of sections. The text in the sections is meant to be replaced
completely, and it consist of:</p>
<ul>
<li>
<p >An explanation of what the
section should contain</p>
</li><li>
<p >An example of what it the
section could look like</p>
</li></ul>
<h4 class="western">0.4.3 - Example</h4>
<p>Each section has an example. The example is consistent throughout
the document, and it is around a fictitious company called
“Manufacturing Group Limited”. The objective is to provide a
broad and generic example that covers multiple useful areas which
companies can relate to. In this specific example, the company is
looking for a machine learning system that performs predictive
maintenance and data analysis automation on a fictitious end-to-end
internal process.</p>
<h4 class="western">0.4.4 - When to use</h4>
<p>This template is relevant primarily for the procurement of machine
learning systems, and hence it is only relevant when looking to
automate a process that involves data analysis that is too complex to
be tackled using simple RPA tools or rule-based systems.
</p>
<hr>
<h3 class="western">0.5 - Template vs Reality</h3>
<p>This document should serve as a guide. Especially for smaller
projects, the level of detail required may vary significantly, and
some sections can be left out as required. This template attempts to
to provide a high level overview on each chapter (and respective
sections) so the procurement manager and suppliers can provide as
much content as reasonable.
</p>
<p>Each company putting together a procurement process will have
different set of requirements, and unfortunately this is not a
“one-size-fits-all” document. The main purpose of this document
is to raise the bar both in industry and technology, and provide key
industry stakeholders with a solid basis to start from. Also, it’s
free.</p>
<hr>
<h3 class="western" >0.6 - Open
Source License - Free as in freedom</h3>
<h4 class="western">0.6.1 - Open source License</h4>
<p>This document is open source, which means that it can be updated
by the community. The motivation to release this as open source is so
that it is continuously improved by the community. This will ensure
that the standards for safety, quality and performance of what is
expected in machine learning systems will keep increasing, whilst
being kept in check on a realistic level by both suppliers and
companies.</p>
<h4 class="western">0.6.2 - Contributing.md</h4>
<p>The Institute for Ethical AI & Machine Learning’s AI-RFX
committee is in charge of the contributing community for all of the
templates under the AI-RFX Procurement Framework. Anyone who
would like to contribute, add suggestions, or provide example and
practical uses of this template, please contact us through the
website, or send us an email via <a href="mailto:[email protected]">[email protected]</a>.</p>
<h4 class="western">0.6.3 - License</h4>
<p>This document is registered under <a href="https://github.com/EthicalML/ai-rfx-procurement-framework">this
MIT License</a> (<a href="https://raw.githubusercontent.com/EthicalML/ai-rfx-procurement-framework/master/LICENSE">raw
file</a>), which means that anyone can re-use, modify or enhance this
document as long as credit is given to The Institute for Ethical AI &
Machine Learning. It also includes an “as is” disclaimer. Please
read the license before using this template.</p>
<p ><br>
<br>
</p>
<hr>
<h2>Request for Proposal Template Begins Here:</h2>
<h2>Example company name: MANUFACTURING GROUP LIMITED
</h2>
<p>Example AI-RFP for Machine Learning Automation System</p>
<p>Issued on: 00/00/2019</p>
<p>Issued by: Person’s Name</p>
<p>Reference Number: #REFNUMBER</p>
<h2 class="western" >1 - Our Company</h2>
<p>This chapter contains a high level overview about the company that
is setting up the tender process.</p>
<hr>
<h3 class="western">1.1 - Company Overview</h3>
<p>This section should provide a brief overview of the company. It
may also be worth adding insights on the company’s commitments and
efforts in the field of AI.
</p>
<table >
<colgroup><col width="0*">
</colgroup><tbody><tr>
<td >
<p>Example Company Overview for “Manufacturing Group Limited”</p>
<p>Manufacturing Group Limited is an OEM manufacturing company
that was set up in 1992, we are a large manufacturing group with a
large number of suppliers. We operate machinery across over 10
countries across the world. The quality of our machines is the
highest amongst our competitors, and the processes we have created
around maintenance & operations are the most advanced in the
industry. We have a commitment of £100m during the next 5 years
to introduce machine learning into our company to improve the
quality and efficiency of our processes, and enable our staff to
focus on more important higher level tasks.</p>
</td>
</tr>
</tbody></table>
<hr>
<h3 class="western">1.2 - Key Facts</h3>
<p>This section should contain 5-10 key facts about the company.
Similar to the brief overview, it may be worth adding some key facts
about the current focus as an organisation towards the area of
artificial intelligence and machine learning.
</p>
<table >
<colgroup><col width="0*">
</colgroup><tbody><tr>
<td >
<p>Example Key Facts for “Manufacturing Group Limited”</p>
<ul>
<li>
<p >We were established in
1992</p>
</li><li>
<p >We have 20 offices
across 10 countries</p>
</li><li>
<p >We operate over 20,000
machines world wide</p>
</li><li>
<p >Our vision is to drive
the way in machinery through quality and innovation</p>
</li><li>
<p >Our mission is to
operate and maintain 50% of machines in the world</p>
</li><li>
<p >...</p>
</li></ul>
</td>
</tr>
</tbody></table>
<hr>
<h3 class="western" >1.3 - Values</h3>
<p>List your company values as relevant to ensure suppliers are
aware.</p>
<table >
<colgroup><col width="0*">
</colgroup><tbody><tr>
<td >
<p>Example Values for “Manufacturing Group Limited”</p>
<ul>
<li>
<p >Respect
</p>
</li><li>
<p >Transparency</p>
</li><li>
<p >Responsibility</p>
</li><li>
<p >Knowledge</p>
</li><li>
<p >Humbleness</p>
</li></ul>
</td>
</tr>
</tbody></table>
<hr>
<h3 class="western">1.4 - Responsibility Commitment</h3>
<p>This section requests suppliers to ensure they follow the 8
Principles for Responsible Machine Learning development. The 8
commitments are implemented in this framework through the Machine
Learning Maturity Model, and they are implicit on each section.</p>
<p>We suggest you use a variation of the default example provided
below.</p>
<table >
<colgroup><col width="608">
</colgroup><tbody><tr>
<td >
<p>Example Responsibility Commitment</p>
<p>This request for proposal requires all suppliers to follow the
8 principles for responsible machine learning defined by The
Institute for Ethical AI & Machine Learning. The 8 principles
state best practices in each area, and as it is stated, they don’t
always have to be implemented in every project, but when this is
the case it should be an explicit decision not to.</p>
<table >
<tbody><tr>
<td >
<p>1 - Human Augmentation</p>
</td>
<td >
<p>2 - Bias Evaluation</p>
</td>
<td >
<p>3 - Explainability by justification</p>
</td>
</tr>
<tr>
<td >
<p>4 - Reproducible operations</p>
</td>
<td >
<p>5 - Displacement strategy</p>
</td>
<td >
<p>6 - Practical accuracy</p>
</td>
</tr>
<tr>
<td >
<p>7 - Trust by privacy</p>
</td>
<td >
<p>8 - Security risks</p>
</td>
<td >
</td>
</tr>
</tbody></table>
<p>You can find the Machine Learning Principles by The Institute
for Ethical AI & Machine Learning at
<a href="https://ethical.institute/principles.html">https://ethical.institute/principles.html</a>
</p>
</td>
</tr>
</tbody></table>
<hr>
<h3 class="western">1.5 - External Links</h3>
<p>This section should contain links relevant for suppliers and
solution providers. Some sample links are provided which reference to
some of the points covered in this document, including website
address, reference to background knowledge, and links to domain
specific requirements.</p>
<table >
<colgroup><col width="0*">
</colgroup><tbody><tr>
<td >
<p>Example Process Overview for “Manufacturing Group Limited”</p>
<ul>
<li>
<p >Company website:
<a href="https://ethical.institute/">https://ethical.institute</a></p>
</li><li>
<p >The 8 Machine Learning
Principles: <a href="https://ethical.institute/principles.html">https://ethical.institute/principles.html</a></p>
</li><li>
<p >...</p>
</li></ul>
</td>
</tr>
</tbody></table>
<h2 class="western" >2 -
Requirements Overview</h2>
<p>The objective of this chapter is not to propose the solution
desired, but to provide details on the end-to-end process and/or
challenge identified within the company. As mentioned in the
introduction, given that this RFP is specific to machine learning
solutions, the ideal way to explain the challenge/process is through
the flow of data across the entire process, including
transformations, stakeholders involved, systems, and data-sources.
This is because machine learning solutions are used to automate the
analysis of data, and hence this would provide suppliers with a good
understanding on all the steps that surround the data itself.</p>
<p>This chapter has been put together using the <a href="https://ethical.institute/rfx.html#model">Machine
Learning Maturity Model</a> assessment criteria. Each section takes
into consideration each of the criteria implicitly. It is recommended
to take into consideration all the 8 assessment criteria when putting
together this section.</p>
<hr>
<h3 class="western">2.1 - Key objectives & outcomes</h3>
<p>This section is one of the most important in this chapter. This
section should provide a high level overview of what are the tangible
outcomes desired as outputs of a successful tender process. The idea
is for this section to provide high level objectives / KPIs. Later
on, <a href="https://docs.google.com/document/d/1ecJPiCAc0EkAbU_L5f2yxgucAfThynQLc1Qn37jR4Gg/edit#heading=h.3ehiifm25uca">Section
2.6 - Target improvements and metrics</a> focuses on lower-level
quantifiable metrics that relate to each of the high level objectives
/ KPIs in this section.
</p>
<p>Points to include in this section include:</p>
<ul>
<li>
<p >High level reason why
process/challenge is being tackled</p>
</li><li>
<p >Key improvement areas (e.g
domain expert time freed, reduction of errors, improvement of
inefficient process, etc)</p>
</li><li>
<p >Type of high level services
or qualities that are sought in suppliers being procured</p>
</li></ul>
<table >
<colgroup><col width="0*">
</colgroup><tbody><tr>
<td >
<p>Example Aims & Objectives for “Manufacturing Group
Limited”</p>
<ul>
<li>
<p >Significantly free time
from our domain-knowledge experts so they are able to focus on
high level tasks</p>
</li><li>
<p >Obtaining a better
insight on the data from our machines in order to enhance
existing processes through innovative capabilities such as
predictive maintenance</p>
</li><li>
<p >Identify a technology
provider that can offer a flexible solution that can be used in a
wider set of automation contexts</p>
</li><li>
<p >As optional extra, build
long term relationship with supplier that can help us build data
science and machine learning capabilities internally
</p>
</li><li>
<p >...</p>
</li></ul>
</td>
</tr>
</tbody></table>
<hr>
<h3 class="western">2.2 - Process/challenge overview</h3>
<p>This section should contain a concise and high level description
of the process / challenge that the organisation has identified which
needs to be automated or improved. As mentioned at the beginning of
the chapter, the overview should focus on the flow of the data across
the steps throughout process. Once again, the reason for this is
because machine learning use-cases in industry are for (full or
partial) automation of data analysis -- whether for business insights
or process automation.</p>
<p>Providing in-depth information on the current flow of data will
allow suppliers to use their expertise to how and to what extent
their solution will be able to automate the process, whether full or
partial automation.
</p>
<p>The key questions that should be covered in this section include:</p>
<ul>
<li>
<p >What are the data-sets and
data-sources involved in the process?</p>
</li><li>
<p >Who are the stakeholders
involved?</p>
</li><li>
<p >What are the
approximate/high-level volumes processed?</p>
</li><li>
<p >How common are human/system
errors?</p>
</li><li>
<p >What are the inefficiencies
that were identified?</p>
</li></ul>
<p>Below is an example of how these questions can be answered in a
high level summary.</p>
<table >
<colgroup><col width="0*">
</colgroup><tbody><tr>
<td >
<p>Example Process Overview for “Manufacturing Group Limited”</p>
<ul>
<li>
<p >Machines Group Limited
currently has identified a bottleneck in an inefficient process
that is executed on a day to day basis
</p>
</li><li>
<p >This process requires a
lot of manual actions from various stakeholders, both domain
experts and staff, to retrieve and analyse data</p>
</li><li>
<p >The main process
revolves around evaluating the status of machinery whenever it is
necessary through image, text and numeric data</p>
</li><li>
<p >There are multiple
systems involved in carrying out this process</p>
</li><li>
<p >At the end of every
month, it is also necessary to write a report with all the
results from the previous month</p>
</li><li>
<p >Often there are errors
in the data as well, which requires the data to be collected
again, but identifying those errors is often too expensive</p>
</li></ul>
</td>
</tr>
</tbody></table>
<hr>
<h3 class="western">2.3 - Process Detail</h3>
<p>This section covers the process into detail. It still focuses
mainly on the data-flow, but provides a much more in-depth overview
for the following 4 areas:</p>
<ol>
<li>
<p >Dataset overview</p>
</li><li>
<p >Stakeholder overview</p>
</li><li>
<p >Workstreams overview</p>
</li><li>
<p >Step by step workstreams
breakdown</p>
</li></ol>
<h4 class="western">2.3.1 - Dataset Overview</h4>
<p>This subsection should provide information about the datasets
involved across the end-to-end process. There should be a brief
overview of the systems and/or data-sources where the datasets are
stored and/or processed. There should also be a high level overview
of what the datasets consist of. <a href="https://docs.google.com/document/d/1ecJPiCAc0EkAbU_L5f2yxgucAfThynQLc1Qn37jR4Gg/edit#heading=h.84prvsfhx8jz">“Chapter
4: Detailed Scope”</a> covers the systems and the datasets into
much more detail with samples and documentation where relevant.</p>
<p>The table below provides an example of 6 datasets across 3
systems:</p>
<table >
<colgroup><col width="0*">
</colgroup><tbody><tr>
<td >
<p>Example Datasets Overview for “Manufacturing Group Limited”</p>
<p>Datasets involved:</p>
<table >
<colgroup><col width="90">
<col width="107">
<col width="72">
<col width="316">
</colgroup><tbody><tr>
<td >
<p>Name</p>
</td>
<td >
<p>Type</p>
</td>
<td >
<p>System</p>
</td>
<td >
<p>Description</p>
</td>
</tr>
<tr>
<td >
<p>Photos of machines</p>
</td>
<td >
<p>Image</p>
</td>
<td >
<p>RoboSys</p>
</td>
<td >
<p>This is a collection of photos that are taken from the
machines once a day, and stored as a blob format. The image
resolutions vary. The file types are PNG and JPG.</p>
</td>
</tr>
<tr>
<td >
<p>Logs</p>
</td>
<td >
<p>Semi-structured Text</p>
</td>
<td >
<p>LogSys</p>
</td>
<td >
<p>This dataset contains all the logs for the machine which are
generated whenever any operation takes place. These are
semi-structured text with a specific format.</p>
</td>
</tr>
<tr>
<td >
<p>Building system metrics</p>
</td>
<td >
<p>Numbers</p>
</td>
<td >
<p>RoboSys</p>
</td>
<td >
<p>These are the metrics that are continuously generated by the
machine. The metrics include the machine temperature, room
temperature, humidity and revolutions per second.</p>
</td>
</tr>
<tr>
<td >
<p>Analysis results</p>
</td>
<td >
<p>Numbers and structured text</p>
</td>
<td >
<p>MyERP</p>
</td>
<td >
<p>These are the results that are put together by the domain
knowledge expert when analysing the metrics, logs and images.
This includes the state of the machine, together with the
results on whether it requires maintenance or review.</p>
</td>
</tr>
<tr>
<td >
<p>Report</p>
</td>
<td >
<p>Unstructured text</p>
</td>
<td >
<p>MyERP</p>
</td>
<td >
<p>This is the report that is put together by the domain expert
every month with an overview of all the individual results
submitted to the system.</p>
</td>
</tr>
<tr>
<td >
<p>Scheduled notifications</p>
</td>
<td >
<p>Structured text</p>
</td>
<td >
<p>MyERP</p>
</td>
<td >
<p>Notifications are sent when a machine requires a planned or
unplanned evaluation</p>
</td>
</tr>
</tbody></table>
</td>
</tr>
</tbody></table>
<h4 class="western">2.3.2 - Stakeholder Overview</h4>
<p>This subsection should provide an overview of the stakeholders
that are involved throughout the end-to-end process, including:</p>
<ul>
<li>
<p >Name of the type of
stakeholder</p>
</li><li>
<p >Brief description</p>
</li><li>
<p >Whether stakeholder is a
domain expert or staff (more on this below)</p>
</li></ul>
<p>This subsection should outline which stakeholders are “Domain
Experts”. The “Domain Experts” are the stakeholders that use
domain-specific or expert knowledge to analyse data. Often the Domain
Experts need to be available for suppliers to answer questions, as
suppliers may need to obtain insight about how the data is analysed
or how the systems are used, so the right machine learning solution
can be proposed.</p>
<p>The example below covers 4 stakeholders, three of which are domain
experts and perform complex analysis on the datasets.</p>
<table >
<colgroup><col width="0*">
</colgroup><tbody><tr>
<td >
<p>Example Stakeholder Overview for “Manufacturing Group
Limited”</p>
<p>Stakeholders involved in the process:</p>
<table >
<colgroup><col width="118">
<col width="86">
<col width="383">
</colgroup><tbody><tr>
<td >
<p>Name</p>
</td>
<td >
<p>Type</p>
</td>
<td >
<p>Description</p>
</td>
</tr>
<tr>
<td >
<p>Machine Evaluation Expert</p>
</td>
<td >
<p>Domain Expert</p>
</td>
<td >
<p>This is a domain expert that has specific knowledge on the
machines, and has the capability to evaluate the performance of
the machines</p>
</td>
</tr>
<tr>
<td >
<p>Engineering Team</p>
</td>
<td >
<p>Domain Expert</p>
</td>
<td >
<p>Technical individual in charge of the maintenance and
operation of the systems</p>
</td>
</tr>
<tr>
<td >
<p>Delivery manager</p>
</td>
<td >
<p>Domain Expert</p>
</td>
<td >
<p>This person is involved in producing a report once a month</p>
</td>
</tr>
<tr>
<td >
<p>Analyst</p>
</td>
<td >
<p>Staff</p>
</td>
<td >
<p>This person is in charge of collecting data</p>
</td>
</tr>
</tbody></table>
</td>
</tr>
</tbody></table>
<h4 class="western">2.3.3 - Workstreams Overview</h4>
<p>The end-to-end process often may consist of multiple different
independent or dependent workstreams. This step requires an overview
of the workstreams that constitute the process. Each workstream
should contain the following information:</p>
<ul>
<li>
<p >High-level description of
each workstream</p>
</li><li>
<p >Order in which workstreams
are executed, or alternative whether they are not dependent on each
other (i.e. parallel or sequence).</p>
</li></ul>
<p>Below is an example with 2 parallel workstreams:</p>
<table >
<colgroup><col width="0*">
</colgroup><tbody><tr>
<td >
<p>Example Workstreams Overview for “Manufacturing Group
Limited”</p>
<p>In this process there are two workstreams identified, which are
independent of each other and are executed in parallel, but at a
different frequency.</p>
<table >
<colgroup><col width="85">
<col width="86">
<col width="412">
</colgroup><tbody><tr>
<td >
<p>Order</p>
</td>
<td >
<p>Name</p>
</td>
<td >
<p>Description</p>
</td>
</tr>
<tr>
<td >
<p>1 (parallel)</p>
</td>
<td >
<p>Machine evaluation</p>
</td>
<td >
<p>This process involves the machine experts and engineering
team to review the data from the current machine, and submit
the conclusion to the MyERP system.</p>
</td>
</tr>
<tr>
<td >
<p>1 (parallel)</p>
</td>
<td >
<p>Report creation</p>
</td>
<td >
<p>The report creation requires the Report maker to extract all
the machine evaluations carried out during the last month
manually, and produce a report that summarises the results</p>
</td>
</tr>
</tbody></table>
</td>
</tr>
</tbody></table>
<h4 class="western">2.3.4 - Step-by-Step Workstreams Breakdown</h4>
<p>This subsection should contain every step for each workflow
identified across the end-to-end process. Each step provided should
contain the following where relevant:</p>
<table >
<tbody><tr>
<td >
<p>#</p>
</td>
<td >
<p>Name</p>
</td>
<td >
<p>Description</p>
</td>
</tr>
<tr>
<td >
<p>1</p>
</td>
<td >
<p>Stakeholders</p>
</td>
<td >
<p>All the stakeholders involved in this step</p>
</td>
</tr>
<tr>
<td >
<p>2</p>
</td>
<td >
<p>Datasets</p>
</td>
<td >
<p>All the datasets that are retrieved, transformed or created -
ideally one action per step</p>
</td>
</tr>
<tr>
<td >
<p>3</p>
</td>
<td >
<p>Systems</p>
</td>
<td >
<p>The systems that are used to retrieve, transform or save data
</p>
</td>
</tr>
<tr>
<td >
<p>4</p>
</td>
<td >
<p>Actions</p>
</td>
<td >
<p>Actions performed by stakeholders or systems, generally around
the data, but also could be different</p>
</td>
</tr>
</tbody></table>
<p>(*) Don’t forget</p>
<p>It is important to make sure that there are no steps that are
missed -- especially the following points:</p>
<ul>
<li>
<p >Detailed steps required to
extract the data from the systems</p>
</li><li>
<p >The domain expert
analysis/transformations that are performed in the data involved</p>
</li><li>
<p >New creation of datasets
which could be as small as adding results to a system or writing a
report</p>
</li></ul>
<p>The example below covers an overview of the first workstream
outlined in the example above.</p>
<table >
<colgroup><col width="0*">
</colgroup><tbody><tr>
<td >
<p>Example Step-by-Step Workstreams Breakdown for “Manufacturing
Group Limited”</p>
<p>The granular step-by-step process for the FIRST workflow,
machine evaluation is as follows:</p>