SlideShare a Scribd company logo
1 of 36
Download to read offline
2nd edition
#MLSEV 2
Tunnel Boring Machines
Oil Temperature Variations ML Analysis
Guillem Rafales Queralt
Infrastructures & Transport
Construction Manager Leader
SENER
Guillem Vidal
Machine Learning Engineer
BigML
#MLSEV 3
Tunnel Boring Machines
#MLSEV 4
SENER´s Experience
#MLSEV 6
SENER´s Experience
#MLSEV 7
SENER´s Experience
#MLSEV 8
TBM Description
Tunnel Boring Machines are those machines used to perform Rock
tunneling excavation by mechanical means. Close faced shielded
machines also permit the excavation in Soft Ground conditions.
There are two basic types of pressurized closed-face tunneling systems:
Slurry Tunneling machines and Earth Pressure Balance EPB machines.
Courtesy video of an EPB machine, from Herrenknecht
Ibérica S.A. and only for academic purposes.
#MLSEV 9
TBM Gear Oil Temperature
Main bearing of a TBM is the mechanical core of the machine which
enables TBM to turn cutter Head and transmits the torque of motorization
to terrain to be excavated.
The bearing maintains lubrication due of a full charge of gear oil of about
680 cSt viscosity. About 5000 liters of oil is necessary to full fit the main
bearing of a 12m Ø tunneling machine.
Oil analysis are performed to
monitor wear status and adequate
condition of the main bearing
#MLSEV 10
TBM External Factors Impact
External factors have a high impact in TBMs outcome, such as difficult
geological conditions, urban areas, logistic problems, economical, politic
matters and influent stake-holders.
Taegu Metro, Corea del Sur (2000)
Colonia Metro, Alemania (2009)
#MLSEV 11
Objective
Prepare a preliminary study about Tunnel Boring Machines gear oil
temperature variations. Analyze relationships between oil temperature
changes and the multiple TBM internal parameters. If possible, explore
relevant oil temperature variations predictions to anticipate related failures
Oil temperature being related to internal TBM matters, it has been picked
as the PoC analysis objective to avoid external impact complexity.
Oil temperature variations are slow and rare which makes the analysis a
challenge
#MLSEV 12
Data
#MLSEV 13
Provided Data
• 2GB of historic data from 1 tunnel have been provided
• Over 1700 DBF files each one representing a tunnel ring
• Each instance represents a TBM data measure with hundreds of
attributes at a given instant
• Measures are provided every 10 seconds
Discarded data:
• When the TBM is not advancing
• When gear oil temperature is under 46 degrees(C)
#MLSEV 14
Main Features
• Torque
• Speed
• Penetration
• Forces
• Pressure
• Liquid flows and volumes
• Chamber material measures
• Times and frequencies
• Amongst many others…
#MLSEV 15
Feature Engineering
Future gear oil temperature variations
• Tested with different intervals (3, 5, 10, 15, 30 and 60 minutes) to find
relevant variation causes as short as possible
• A boolean flag indicating 0.3 degrees (C) temperature raises in the
next 10 minutes has been kept
Sliding windows data for the past 5 minutes
• A 5 minutes past summary has been aggregated for overall features
including ranges, standard deviation and averages
Resulting dataset 120k rows, 5k temperature raises (4.3%), 171MB
#MLSEV 16
Data Insights
#MLSEV 17
Association Discovery
date customer account auth class zip amount
Mon Bob 3421 pin clothes 46140 135
Tue Bob 3421 sign food 46140 401
Tue Alice 2456 pin food 12222 234
Wed Sally 6788 pin gas 26339 94
Wed Bob 3421 pin tech 21350 2459
Wed Bob 3421 pin gas 46140 83
Thr Sally 6788 sign food 26339 51
An unsupervised algorithm that looks for coincidences in the data and returns
association rules with an antecedent, a consequent and several metrics. It is very useful
for data exploration amongst other goals. Example:
zip = 46140
amount < 100
Antecedent Consequent
Rules: {customer = Bob, account = 3421}
{class = gas}
#MLSEV 18
Association Discovery
Consequent: Temp_range_10m > 0.3 degrees (temperature range in the next 10m)
#MLSEV 19
Association Rule Example
Rule summary
• When:
• pushing force metric has been high for 5 minutes
• temperature has been to an average value for 5 minutes
• material is currently being cumulated inside the machine
• Then the oil gear temperature increases over 0.3 degrees during the next 10 minutes
Rule metrics
• 100% confidence (32 instances in 2 different rings)
#MLSEV 20
Data Exploration
• Multiple Association Discovery have been trained in the data exploration phase. In
each case results were shared with SENER experts to identify irrelevant and interesting
rules
• After several iterations Association Discovery attributes were sufficiently optimized to
produce interesting rules
• A final set of rules was sent to SENER in order to select the most potentially interesting
rules and proceed with specific analysis for each one
• In general a large amount of rules contained negative material deviation features
• Data observations showed material accumulations in the chamber were often tied to
temperature raises
#MLSEV 21
Data Visualization
Grafana screenshot showing a case where negative material deviation (bottom right)
happen together with gear oil temperature raise (top left)
#MLSEV 22
Anomaly Detection
#MLSEV
date customer account auth class zip amount
Mon Bob 3421 pin clothes 46140 135
Tue Bob 3421 sign food 46140 401
Tue Alice 2456 pin food 12222 234
Wed Sally 6788 pin gas 26339 94
Wed Bob 3421 pin tech 21350 2459
Wed Bob 3421 pin gas 46140 83
Thr Sally 6788 sign food 26339 51
23
Anomaly Detection
An unsupervised algorithm that looks for unusual instances in a dataset. Anomaly
detectors provide an anomaly score to each instance, the higher is the score the most
unusual is the instance. Example:
• Amount $2,459 is higher than all other transactions
• Only transaction
• In zip 21350
• For the purchase class “tech"
#MLSEV 24
Anomaly Detector
Features: Only material deviation variables
#MLSEV 25
Anomaly Detector Results
• Top anomalies often correspond to
temperature raises over 0.3 degrees
in the next 10 minutes
• Filtering anomaly scores over 50%
results into 4.5% of the original data
including 12.6% of the original
temperature raise instances
• Resulting dataset is more
balanced: 11.8% temperature
raises (orange data points in the
graph)
#MLSEV 26
Classification
#MLSEV 27
Classification
• After filtering high anomaly scores the dataset is more balanced and classification
makes sense with supervised learning. The goal is to predict whether the gear oil
temperature will raise considerably in the future 10 minutes
• Data has been split linearly to evaluate models:
• Training dataset 70%: 3687 rows, 273 with high temperature raise
• Test dataset 30%: 1804 rows, 377 with high temperature raise
• Feature engineering and feature selection has been performed resulting into a
subset of features including material deviation, oil temperature and some generic
parameters
#MLSEV 28
Decision Tree
Decision trees being simple and interpretable have been chosen as the initial
classification approach
#MLSEV 29
Decision Tree Evaluation
• Precision and Recall are 45.5% and
48.3% respectively. Not specially
high but still better than average.
This means predictions are
possible. Results are much better
than in preliminar tests
• Ideally current evaluation results
should be improved
• OptiML has been used to optimize
the algorithm and parameters choice
#MLSEV 30
OptiML Model Optimization
• An OptiML has been trained to
optimize ROC Area Under the Curve
metric using the same training and
test datasets
• OptiML resulting ROC AUC
measures appear much higher than
the decision tree ones, there is a
clear improvement
• Best results are achieved by decision
tree ensembles
#MLSEV 31
Ensemble Evaluation
• With a 39% probability threshold
precision and recall values 50.9%
and 69.5%
• This means model would be able to
predict half of the temperature raises
and 70% predictions would be
correct
• The Area Under the ROC Curve
(ROC AUC) is almost 80% which is
a good overall indicator for the model
#MLSEV 32
Summary
#MLSEV 33
Workflow
TUNNEL
DATA
SOURCE
ORIGINAL
DATASET
ADD
FEATURES
DATA
CLEANING
ASSOCIATION RULES
EXPLORATION
ML READY
DATASET
MATERIAL
DEVIATION
ANOMALY
DETECTOR
ANOMALY
SCORE >
0.5 FILTER
HIGH ANOMALY
SCORED
DATASET
TRAIN 70% TEST 30%
ENSEMBLE
PREDICT HIGH
TEMPERATURE
RAISE
EVALUATION
OPTIML MODEL
OPTIMIZATION
#MLSEV 34
Results
• An Anomaly Detector has isolated 12.6% of all temperature raise cases within a
smaller dataset (4.6% overall). 650 temperature raises were filtered into a smaller
dataset of 5501 instances
• Based on Recall in the evaluation, overall 8.8% of temperature raises would be
predicted by the Anomaly Detector together with the Ensemble
• Based on Precision, the Anomaly Detector together with the Ensemble could predict a
temperature raise on 3.8% of the original dataset with 1.9% correct predictions
• Based on this numbers the Machine Learning workflow could predict 8.8%
temperature raises and provided predictions would have a 50% reliability
#MLSEV 35
Conclusions
•Material deviation real time alerts could be implemented in Tunnel Boring
Machines using this method
•It has been proved Machine Learning means can provide useful TBM
insights
•Plenty of other Machine Learning analyses and implementations are
possible in TBMs. An advanced cockpit could be implemented
MLSEV Virtual. Anomalies in Oil Temperature Variations in a TBM

More Related Content

What's hot

VVC AUTO 85.5 - Smog Technician - Level 1 - Baseline testing
VVC AUTO 85.5 - Smog Technician - Level 1 - Baseline testingVVC AUTO 85.5 - Smog Technician - Level 1 - Baseline testing
VVC AUTO 85.5 - Smog Technician - Level 1 - Baseline testingJustin Gatewood
 
Duncan cairnie ccm energy solutions hvacr seminar- april 2016
Duncan cairnie ccm energy solutions   hvacr seminar- april 2016Duncan cairnie ccm energy solutions   hvacr seminar- april 2016
Duncan cairnie ccm energy solutions hvacr seminar- april 2016ARAaus
 
Pfctncattherm 06112
Pfctncattherm 06112Pfctncattherm 06112
Pfctncattherm 06112Evelyn Rosas
 
How to calibrate an ir thermometer, frank liebmann, 2013 05-07
How to calibrate an ir thermometer, frank liebmann, 2013 05-07How to calibrate an ir thermometer, frank liebmann, 2013 05-07
How to calibrate an ir thermometer, frank liebmann, 2013 05-07Jesus Enrique Oliva Salazar
 
Sodium Analyzer for Industrial Applications
Sodium Analyzer for Industrial ApplicationsSodium Analyzer for Industrial Applications
Sodium Analyzer for Industrial ApplicationsClassic Controls, Inc.
 
542 Programmable Gas Analyser
542 Programmable Gas Analyser542 Programmable Gas Analyser
542 Programmable Gas AnalyserSystechIllinois
 
Changing Best Practices in Flue Gas Analysis
Changing Best Practices in Flue Gas AnalysisChanging Best Practices in Flue Gas Analysis
Changing Best Practices in Flue Gas AnalysisYokogawa1
 
Data sheet g52 m print version
Data sheet g52 m print versionData sheet g52 m print version
Data sheet g52 m print versiona1-cbiss
 
The beginners guide to heat treatment control v2
The beginners guide to heat treatment control v2The beginners guide to heat treatment control v2
The beginners guide to heat treatment control v2Peter Sherwin
 
Final Presentation first internship
Final Presentation first internshipFinal Presentation first internship
Final Presentation first internshipIsaac Hardison
 
Thermometers calibration
Thermometers calibrationThermometers calibration
Thermometers calibrationHanns Muller
 
Temperature calibration
Temperature calibrationTemperature calibration
Temperature calibrationChetan Yadav
 
Amesa mercury sorbent trap system datasheet
Amesa mercury sorbent trap system datasheetAmesa mercury sorbent trap system datasheet
Amesa mercury sorbent trap system datasheeta1-cbiss
 
Refrigeranti a basso GWP per il condizionamento e le pompe di calore - B. Bel...
Refrigeranti a basso GWP per il condizionamento e le pompe di calore - B. Bel...Refrigeranti a basso GWP per il condizionamento e le pompe di calore - B. Bel...
Refrigeranti a basso GWP per il condizionamento e le pompe di calore - B. Bel...Centro Studi Galileo
 
HVAC for Energy Advisors & Raters
HVAC for Energy Advisors & RatersHVAC for Energy Advisors & Raters
HVAC for Energy Advisors & RatersBrett Dillon
 
Clean air sorbent samplers
Clean air sorbent samplersClean air sorbent samplers
Clean air sorbent samplerscleanairengr_01
 

What's hot (20)

VVC AUTO 85.5 - Smog Technician - Level 1 - Baseline testing
VVC AUTO 85.5 - Smog Technician - Level 1 - Baseline testingVVC AUTO 85.5 - Smog Technician - Level 1 - Baseline testing
VVC AUTO 85.5 - Smog Technician - Level 1 - Baseline testing
 
Duncan cairnie ccm energy solutions hvacr seminar- april 2016
Duncan cairnie ccm energy solutions   hvacr seminar- april 2016Duncan cairnie ccm energy solutions   hvacr seminar- april 2016
Duncan cairnie ccm energy solutions hvacr seminar- april 2016
 
Pfctncattherm 06112
Pfctncattherm 06112Pfctncattherm 06112
Pfctncattherm 06112
 
How to calibrate an ir thermometer, frank liebmann, 2013 05-07
How to calibrate an ir thermometer, frank liebmann, 2013 05-07How to calibrate an ir thermometer, frank liebmann, 2013 05-07
How to calibrate an ir thermometer, frank liebmann, 2013 05-07
 
Sodium Analyzer for Industrial Applications
Sodium Analyzer for Industrial ApplicationsSodium Analyzer for Industrial Applications
Sodium Analyzer for Industrial Applications
 
About us
About usAbout us
About us
 
542 Programmable Gas Analyser
542 Programmable Gas Analyser542 Programmable Gas Analyser
542 Programmable Gas Analyser
 
Changing Best Practices in Flue Gas Analysis
Changing Best Practices in Flue Gas AnalysisChanging Best Practices in Flue Gas Analysis
Changing Best Practices in Flue Gas Analysis
 
Cone calorimeter
Cone calorimeterCone calorimeter
Cone calorimeter
 
Data sheet g52 m print version
Data sheet g52 m print versionData sheet g52 m print version
Data sheet g52 m print version
 
The beginners guide to heat treatment control v2
The beginners guide to heat treatment control v2The beginners guide to heat treatment control v2
The beginners guide to heat treatment control v2
 
Final Presentation first internship
Final Presentation first internshipFinal Presentation first internship
Final Presentation first internship
 
pH Control
pH ControlpH Control
pH Control
 
H010344552
H010344552H010344552
H010344552
 
Thermometers calibration
Thermometers calibrationThermometers calibration
Thermometers calibration
 
Temperature calibration
Temperature calibrationTemperature calibration
Temperature calibration
 
Amesa mercury sorbent trap system datasheet
Amesa mercury sorbent trap system datasheetAmesa mercury sorbent trap system datasheet
Amesa mercury sorbent trap system datasheet
 
Refrigeranti a basso GWP per il condizionamento e le pompe di calore - B. Bel...
Refrigeranti a basso GWP per il condizionamento e le pompe di calore - B. Bel...Refrigeranti a basso GWP per il condizionamento e le pompe di calore - B. Bel...
Refrigeranti a basso GWP per il condizionamento e le pompe di calore - B. Bel...
 
HVAC for Energy Advisors & Raters
HVAC for Energy Advisors & RatersHVAC for Energy Advisors & Raters
HVAC for Energy Advisors & Raters
 
Clean air sorbent samplers
Clean air sorbent samplersClean air sorbent samplers
Clean air sorbent samplers
 

Similar to MLSEV Virtual. Anomalies in Oil Temperature Variations in a TBM

Steam Reformer Surveys - Techniques for Optimization of Primary Reformer Oper...
Steam Reformer Surveys - Techniques for Optimization of Primary Reformer Oper...Steam Reformer Surveys - Techniques for Optimization of Primary Reformer Oper...
Steam Reformer Surveys - Techniques for Optimization of Primary Reformer Oper...Gerard B. Hawkins
 
Furnace calibration - temperature uniformity survey
Furnace calibration - temperature uniformity surveyFurnace calibration - temperature uniformity survey
Furnace calibration - temperature uniformity surveyTempsens Instruments
 
Process Solutions from Wet Chemistry to Near-Infrared Spectroscopy
Process Solutions from Wet Chemistry to Near-Infrared SpectroscopyProcess Solutions from Wet Chemistry to Near-Infrared Spectroscopy
Process Solutions from Wet Chemistry to Near-Infrared SpectroscopyMetrohm USA
 
TEMPERATURE TRANSMITTER TEMPE TEMPERATURE TRANSMITTER
TEMPERATURE TRANSMITTER TEMPE TEMPERATURE TRANSMITTERTEMPERATURE TRANSMITTER TEMPE TEMPERATURE TRANSMITTER
TEMPERATURE TRANSMITTER TEMPE TEMPERATURE TRANSMITTERarisprakesa2
 
TEMPERATURE TRANSMITTER_2023 TEMPERATURE TRANSMITTER_2023
TEMPERATURE TRANSMITTER_2023 TEMPERATURE TRANSMITTER_2023TEMPERATURE TRANSMITTER_2023 TEMPERATURE TRANSMITTER_2023
TEMPERATURE TRANSMITTER_2023 TEMPERATURE TRANSMITTER_2023arisprakesa2
 
Voc72 m compounds analyser datasheet 0
Voc72 m compounds analyser datasheet 0Voc72 m compounds analyser datasheet 0
Voc72 m compounds analyser datasheet 0a1-cbiss
 
Rapid compression machine_monthly meeting
Rapid compression machine_monthly meetingRapid compression machine_monthly meeting
Rapid compression machine_monthly meetingNathan Loveldi
 
Klimor solx-report-2016-08-01
Klimor solx-report-2016-08-01Klimor solx-report-2016-08-01
Klimor solx-report-2016-08-01ANTONY SCHWEDHELM
 
T 1 transformer insulation oil sensing system
T 1  transformer insulation oil sensing systemT 1  transformer insulation oil sensing system
T 1 transformer insulation oil sensing systemChung Da-woon
 
Case study: Design Space Exploration for Electronic Cooling simulation
Case study: Design Space Exploration for Electronic Cooling simulationCase study: Design Space Exploration for Electronic Cooling simulation
Case study: Design Space Exploration for Electronic Cooling simulationSuzana Djurcilov
 
Differential scanning calorimeter dsc
Differential scanning calorimeter dscDifferential scanning calorimeter dsc
Differential scanning calorimeter dscHassan Alnajem
 
NREL_SULI_2013_FTIR_EMISSIONS_ANALYSIS_FINAL_POSTER
NREL_SULI_2013_FTIR_EMISSIONS_ANALYSIS_FINAL_POSTERNREL_SULI_2013_FTIR_EMISSIONS_ANALYSIS_FINAL_POSTER
NREL_SULI_2013_FTIR_EMISSIONS_ANALYSIS_FINAL_POSTERAdam Atia
 
Katalog agilent-digital-multimeter-3458 a-digital-multimeter-tridinamika
Katalog agilent-digital-multimeter-3458 a-digital-multimeter-tridinamikaKatalog agilent-digital-multimeter-3458 a-digital-multimeter-tridinamika
Katalog agilent-digital-multimeter-3458 a-digital-multimeter-tridinamikaPT. Tridinamika Jaya Instrument
 
Katalog agilent-digital-multimeter-3458 a-digital-multimeter-tridinamika
Katalog agilent-digital-multimeter-3458 a-digital-multimeter-tridinamikaKatalog agilent-digital-multimeter-3458 a-digital-multimeter-tridinamika
Katalog agilent-digital-multimeter-3458 a-digital-multimeter-tridinamikaPT. Tridinamika Jaya Instrument
 
Katalog agilent-3458 a-digital-multimeter- 8½-digit-tridinamika
Katalog agilent-3458 a-digital-multimeter- 8½-digit-tridinamikaKatalog agilent-3458 a-digital-multimeter- 8½-digit-tridinamika
Katalog agilent-3458 a-digital-multimeter- 8½-digit-tridinamikaPT. Tridinamika Jaya Instrument
 

Similar to MLSEV Virtual. Anomalies in Oil Temperature Variations in a TBM (20)

Steam Reformer Surveys - Techniques for Optimization of Primary Reformer Oper...
Steam Reformer Surveys - Techniques for Optimization of Primary Reformer Oper...Steam Reformer Surveys - Techniques for Optimization of Primary Reformer Oper...
Steam Reformer Surveys - Techniques for Optimization of Primary Reformer Oper...
 
Furnace calibration - temperature uniformity survey
Furnace calibration - temperature uniformity surveyFurnace calibration - temperature uniformity survey
Furnace calibration - temperature uniformity survey
 
Process Solutions from Wet Chemistry to Near-Infrared Spectroscopy
Process Solutions from Wet Chemistry to Near-Infrared SpectroscopyProcess Solutions from Wet Chemistry to Near-Infrared Spectroscopy
Process Solutions from Wet Chemistry to Near-Infrared Spectroscopy
 
TEMPERATURE TRANSMITTER TEMPE TEMPERATURE TRANSMITTER
TEMPERATURE TRANSMITTER TEMPE TEMPERATURE TRANSMITTERTEMPERATURE TRANSMITTER TEMPE TEMPERATURE TRANSMITTER
TEMPERATURE TRANSMITTER TEMPE TEMPERATURE TRANSMITTER
 
TEMPERATURE TRANSMITTER_2023 TEMPERATURE TRANSMITTER_2023
TEMPERATURE TRANSMITTER_2023 TEMPERATURE TRANSMITTER_2023TEMPERATURE TRANSMITTER_2023 TEMPERATURE TRANSMITTER_2023
TEMPERATURE TRANSMITTER_2023 TEMPERATURE TRANSMITTER_2023
 
Voc72 m compounds analyser datasheet 0
Voc72 m compounds analyser datasheet 0Voc72 m compounds analyser datasheet 0
Voc72 m compounds analyser datasheet 0
 
DMA Direct Mercury Analyzer
DMA  Direct Mercury AnalyzerDMA  Direct Mercury Analyzer
DMA Direct Mercury Analyzer
 
Rapid compression machine_monthly meeting
Rapid compression machine_monthly meetingRapid compression machine_monthly meeting
Rapid compression machine_monthly meeting
 
Klimor solx-report-2016-08-01
Klimor solx-report-2016-08-01Klimor solx-report-2016-08-01
Klimor solx-report-2016-08-01
 
T 1 transformer insulation oil sensing system
T 1  transformer insulation oil sensing systemT 1  transformer insulation oil sensing system
T 1 transformer insulation oil sensing system
 
Qualification of high performance liquid chromatography
Qualification of high performance liquid chromatographyQualification of high performance liquid chromatography
Qualification of high performance liquid chromatography
 
628 Series.pptx
628 Series.pptx628 Series.pptx
628 Series.pptx
 
Case study: Design Space Exploration for Electronic Cooling simulation
Case study: Design Space Exploration for Electronic Cooling simulationCase study: Design Space Exploration for Electronic Cooling simulation
Case study: Design Space Exploration for Electronic Cooling simulation
 
Differential scanning calorimeter dsc
Differential scanning calorimeter dscDifferential scanning calorimeter dsc
Differential scanning calorimeter dsc
 
Thermal cycling screen development
Thermal cycling screen developmentThermal cycling screen development
Thermal cycling screen development
 
NREL_SULI_2013_FTIR_EMISSIONS_ANALYSIS_FINAL_POSTER
NREL_SULI_2013_FTIR_EMISSIONS_ANALYSIS_FINAL_POSTERNREL_SULI_2013_FTIR_EMISSIONS_ANALYSIS_FINAL_POSTER
NREL_SULI_2013_FTIR_EMISSIONS_ANALYSIS_FINAL_POSTER
 
Thermovision Test.ppt
Thermovision Test.pptThermovision Test.ppt
Thermovision Test.ppt
 
Katalog agilent-digital-multimeter-3458 a-digital-multimeter-tridinamika
Katalog agilent-digital-multimeter-3458 a-digital-multimeter-tridinamikaKatalog agilent-digital-multimeter-3458 a-digital-multimeter-tridinamika
Katalog agilent-digital-multimeter-3458 a-digital-multimeter-tridinamika
 
Katalog agilent-digital-multimeter-3458 a-digital-multimeter-tridinamika
Katalog agilent-digital-multimeter-3458 a-digital-multimeter-tridinamikaKatalog agilent-digital-multimeter-3458 a-digital-multimeter-tridinamika
Katalog agilent-digital-multimeter-3458 a-digital-multimeter-tridinamika
 
Katalog agilent-3458 a-digital-multimeter- 8½-digit-tridinamika
Katalog agilent-3458 a-digital-multimeter- 8½-digit-tridinamikaKatalog agilent-3458 a-digital-multimeter- 8½-digit-tridinamika
Katalog agilent-3458 a-digital-multimeter- 8½-digit-tridinamika
 

More from BigML, Inc

Digital Transformation and Process Optimization in Manufacturing
Digital Transformation and Process Optimization in ManufacturingDigital Transformation and Process Optimization in Manufacturing
Digital Transformation and Process Optimization in ManufacturingBigML, Inc
 
DutchMLSchool 2022 - Automation
DutchMLSchool 2022 - AutomationDutchMLSchool 2022 - Automation
DutchMLSchool 2022 - AutomationBigML, Inc
 
DutchMLSchool 2022 - ML for AML Compliance
DutchMLSchool 2022 - ML for AML ComplianceDutchMLSchool 2022 - ML for AML Compliance
DutchMLSchool 2022 - ML for AML ComplianceBigML, Inc
 
DutchMLSchool 2022 - Multi Perspective Anomalies
DutchMLSchool 2022 - Multi Perspective AnomaliesDutchMLSchool 2022 - Multi Perspective Anomalies
DutchMLSchool 2022 - Multi Perspective AnomaliesBigML, Inc
 
DutchMLSchool 2022 - My First Anomaly Detector
DutchMLSchool 2022 - My First Anomaly Detector DutchMLSchool 2022 - My First Anomaly Detector
DutchMLSchool 2022 - My First Anomaly Detector BigML, Inc
 
DutchMLSchool 2022 - Anomaly Detection
DutchMLSchool 2022 - Anomaly DetectionDutchMLSchool 2022 - Anomaly Detection
DutchMLSchool 2022 - Anomaly DetectionBigML, Inc
 
DutchMLSchool 2022 - History and Developments in ML
DutchMLSchool 2022 - History and Developments in MLDutchMLSchool 2022 - History and Developments in ML
DutchMLSchool 2022 - History and Developments in MLBigML, Inc
 
DutchMLSchool 2022 - End-to-End ML
DutchMLSchool 2022 - End-to-End MLDutchMLSchool 2022 - End-to-End ML
DutchMLSchool 2022 - End-to-End MLBigML, Inc
 
DutchMLSchool 2022 - A Data-Driven Company
DutchMLSchool 2022 - A Data-Driven CompanyDutchMLSchool 2022 - A Data-Driven Company
DutchMLSchool 2022 - A Data-Driven CompanyBigML, Inc
 
DutchMLSchool 2022 - ML in the Legal Sector
DutchMLSchool 2022 - ML in the Legal SectorDutchMLSchool 2022 - ML in the Legal Sector
DutchMLSchool 2022 - ML in the Legal SectorBigML, Inc
 
DutchMLSchool 2022 - Smart Safe Stadiums
DutchMLSchool 2022 - Smart Safe StadiumsDutchMLSchool 2022 - Smart Safe Stadiums
DutchMLSchool 2022 - Smart Safe StadiumsBigML, Inc
 
DutchMLSchool 2022 - Process Optimization in Manufacturing Plants
DutchMLSchool 2022 - Process Optimization in Manufacturing PlantsDutchMLSchool 2022 - Process Optimization in Manufacturing Plants
DutchMLSchool 2022 - Process Optimization in Manufacturing PlantsBigML, Inc
 
DutchMLSchool 2022 - Anomaly Detection at Scale
DutchMLSchool 2022 - Anomaly Detection at ScaleDutchMLSchool 2022 - Anomaly Detection at Scale
DutchMLSchool 2022 - Anomaly Detection at ScaleBigML, Inc
 
DutchMLSchool 2022 - Citizen Development in AI
DutchMLSchool 2022 - Citizen Development in AIDutchMLSchool 2022 - Citizen Development in AI
DutchMLSchool 2022 - Citizen Development in AIBigML, Inc
 
Democratizing Object Detection
Democratizing Object DetectionDemocratizing Object Detection
Democratizing Object DetectionBigML, Inc
 
BigML Release: Image Processing
BigML Release: Image ProcessingBigML Release: Image Processing
BigML Release: Image ProcessingBigML, Inc
 
Machine Learning in Retail: Know Your Customers' Customer. See Your Future
Machine Learning in Retail: Know Your Customers' Customer. See Your FutureMachine Learning in Retail: Know Your Customers' Customer. See Your Future
Machine Learning in Retail: Know Your Customers' Customer. See Your FutureBigML, Inc
 
Machine Learning in Retail: ML in the Retail Sector
Machine Learning in Retail: ML in the Retail SectorMachine Learning in Retail: ML in the Retail Sector
Machine Learning in Retail: ML in the Retail SectorBigML, Inc
 
ML in GRC: Machine Learning in Legal Automation, How to Trust a Lawyerbot
ML in GRC: Machine Learning in Legal Automation, How to Trust a LawyerbotML in GRC: Machine Learning in Legal Automation, How to Trust a Lawyerbot
ML in GRC: Machine Learning in Legal Automation, How to Trust a LawyerbotBigML, Inc
 
ML in GRC: Supporting Human Decision Making for Regulatory Adherence with Mac...
ML in GRC: Supporting Human Decision Making for Regulatory Adherence with Mac...ML in GRC: Supporting Human Decision Making for Regulatory Adherence with Mac...
ML in GRC: Supporting Human Decision Making for Regulatory Adherence with Mac...BigML, Inc
 

More from BigML, Inc (20)

Digital Transformation and Process Optimization in Manufacturing
Digital Transformation and Process Optimization in ManufacturingDigital Transformation and Process Optimization in Manufacturing
Digital Transformation and Process Optimization in Manufacturing
 
DutchMLSchool 2022 - Automation
DutchMLSchool 2022 - AutomationDutchMLSchool 2022 - Automation
DutchMLSchool 2022 - Automation
 
DutchMLSchool 2022 - ML for AML Compliance
DutchMLSchool 2022 - ML for AML ComplianceDutchMLSchool 2022 - ML for AML Compliance
DutchMLSchool 2022 - ML for AML Compliance
 
DutchMLSchool 2022 - Multi Perspective Anomalies
DutchMLSchool 2022 - Multi Perspective AnomaliesDutchMLSchool 2022 - Multi Perspective Anomalies
DutchMLSchool 2022 - Multi Perspective Anomalies
 
DutchMLSchool 2022 - My First Anomaly Detector
DutchMLSchool 2022 - My First Anomaly Detector DutchMLSchool 2022 - My First Anomaly Detector
DutchMLSchool 2022 - My First Anomaly Detector
 
DutchMLSchool 2022 - Anomaly Detection
DutchMLSchool 2022 - Anomaly DetectionDutchMLSchool 2022 - Anomaly Detection
DutchMLSchool 2022 - Anomaly Detection
 
DutchMLSchool 2022 - History and Developments in ML
DutchMLSchool 2022 - History and Developments in MLDutchMLSchool 2022 - History and Developments in ML
DutchMLSchool 2022 - History and Developments in ML
 
DutchMLSchool 2022 - End-to-End ML
DutchMLSchool 2022 - End-to-End MLDutchMLSchool 2022 - End-to-End ML
DutchMLSchool 2022 - End-to-End ML
 
DutchMLSchool 2022 - A Data-Driven Company
DutchMLSchool 2022 - A Data-Driven CompanyDutchMLSchool 2022 - A Data-Driven Company
DutchMLSchool 2022 - A Data-Driven Company
 
DutchMLSchool 2022 - ML in the Legal Sector
DutchMLSchool 2022 - ML in the Legal SectorDutchMLSchool 2022 - ML in the Legal Sector
DutchMLSchool 2022 - ML in the Legal Sector
 
DutchMLSchool 2022 - Smart Safe Stadiums
DutchMLSchool 2022 - Smart Safe StadiumsDutchMLSchool 2022 - Smart Safe Stadiums
DutchMLSchool 2022 - Smart Safe Stadiums
 
DutchMLSchool 2022 - Process Optimization in Manufacturing Plants
DutchMLSchool 2022 - Process Optimization in Manufacturing PlantsDutchMLSchool 2022 - Process Optimization in Manufacturing Plants
DutchMLSchool 2022 - Process Optimization in Manufacturing Plants
 
DutchMLSchool 2022 - Anomaly Detection at Scale
DutchMLSchool 2022 - Anomaly Detection at ScaleDutchMLSchool 2022 - Anomaly Detection at Scale
DutchMLSchool 2022 - Anomaly Detection at Scale
 
DutchMLSchool 2022 - Citizen Development in AI
DutchMLSchool 2022 - Citizen Development in AIDutchMLSchool 2022 - Citizen Development in AI
DutchMLSchool 2022 - Citizen Development in AI
 
Democratizing Object Detection
Democratizing Object DetectionDemocratizing Object Detection
Democratizing Object Detection
 
BigML Release: Image Processing
BigML Release: Image ProcessingBigML Release: Image Processing
BigML Release: Image Processing
 
Machine Learning in Retail: Know Your Customers' Customer. See Your Future
Machine Learning in Retail: Know Your Customers' Customer. See Your FutureMachine Learning in Retail: Know Your Customers' Customer. See Your Future
Machine Learning in Retail: Know Your Customers' Customer. See Your Future
 
Machine Learning in Retail: ML in the Retail Sector
Machine Learning in Retail: ML in the Retail SectorMachine Learning in Retail: ML in the Retail Sector
Machine Learning in Retail: ML in the Retail Sector
 
ML in GRC: Machine Learning in Legal Automation, How to Trust a Lawyerbot
ML in GRC: Machine Learning in Legal Automation, How to Trust a LawyerbotML in GRC: Machine Learning in Legal Automation, How to Trust a Lawyerbot
ML in GRC: Machine Learning in Legal Automation, How to Trust a Lawyerbot
 
ML in GRC: Supporting Human Decision Making for Regulatory Adherence with Mac...
ML in GRC: Supporting Human Decision Making for Regulatory Adherence with Mac...ML in GRC: Supporting Human Decision Making for Regulatory Adherence with Mac...
ML in GRC: Supporting Human Decision Making for Regulatory Adherence with Mac...
 

Recently uploaded

Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...amitlee9823
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusTimothy Spann
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Valters Lauzums
 
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...SUHANI PANDEY
 
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfAccredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfadriantubila
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...amitlee9823
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysismanisha194592
 
Capstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramCapstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramMoniSankarHazra
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...amitlee9823
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFxolyaivanovalion
 
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...amitlee9823
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Researchmichael115558
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% SecurePooja Nehwal
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz1
 
Call Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night StandCall Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...amitlee9823
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfMarinCaroMartnezBerg
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxolyaivanovalion
 

Recently uploaded (20)

Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and Milvus
 
Anomaly detection and data imputation within time series
Anomaly detection and data imputation within time seriesAnomaly detection and data imputation within time series
Anomaly detection and data imputation within time series
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
 
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
 
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfAccredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysis
 
Capstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramCapstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics Program
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFx
 
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Research
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signals
 
Call Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night StandCall Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night Stand
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 

MLSEV Virtual. Anomalies in Oil Temperature Variations in a TBM

  • 2. #MLSEV 2 Tunnel Boring Machines Oil Temperature Variations ML Analysis Guillem Rafales Queralt Infrastructures & Transport Construction Manager Leader SENER Guillem Vidal Machine Learning Engineer BigML
  • 5.
  • 8. #MLSEV 8 TBM Description Tunnel Boring Machines are those machines used to perform Rock tunneling excavation by mechanical means. Close faced shielded machines also permit the excavation in Soft Ground conditions. There are two basic types of pressurized closed-face tunneling systems: Slurry Tunneling machines and Earth Pressure Balance EPB machines. Courtesy video of an EPB machine, from Herrenknecht Ibérica S.A. and only for academic purposes.
  • 9. #MLSEV 9 TBM Gear Oil Temperature Main bearing of a TBM is the mechanical core of the machine which enables TBM to turn cutter Head and transmits the torque of motorization to terrain to be excavated. The bearing maintains lubrication due of a full charge of gear oil of about 680 cSt viscosity. About 5000 liters of oil is necessary to full fit the main bearing of a 12m Ø tunneling machine. Oil analysis are performed to monitor wear status and adequate condition of the main bearing
  • 10. #MLSEV 10 TBM External Factors Impact External factors have a high impact in TBMs outcome, such as difficult geological conditions, urban areas, logistic problems, economical, politic matters and influent stake-holders. Taegu Metro, Corea del Sur (2000) Colonia Metro, Alemania (2009)
  • 11. #MLSEV 11 Objective Prepare a preliminary study about Tunnel Boring Machines gear oil temperature variations. Analyze relationships between oil temperature changes and the multiple TBM internal parameters. If possible, explore relevant oil temperature variations predictions to anticipate related failures Oil temperature being related to internal TBM matters, it has been picked as the PoC analysis objective to avoid external impact complexity. Oil temperature variations are slow and rare which makes the analysis a challenge
  • 13. #MLSEV 13 Provided Data • 2GB of historic data from 1 tunnel have been provided • Over 1700 DBF files each one representing a tunnel ring • Each instance represents a TBM data measure with hundreds of attributes at a given instant • Measures are provided every 10 seconds Discarded data: • When the TBM is not advancing • When gear oil temperature is under 46 degrees(C)
  • 14. #MLSEV 14 Main Features • Torque • Speed • Penetration • Forces • Pressure • Liquid flows and volumes • Chamber material measures • Times and frequencies • Amongst many others…
  • 15. #MLSEV 15 Feature Engineering Future gear oil temperature variations • Tested with different intervals (3, 5, 10, 15, 30 and 60 minutes) to find relevant variation causes as short as possible • A boolean flag indicating 0.3 degrees (C) temperature raises in the next 10 minutes has been kept Sliding windows data for the past 5 minutes • A 5 minutes past summary has been aggregated for overall features including ranges, standard deviation and averages Resulting dataset 120k rows, 5k temperature raises (4.3%), 171MB
  • 17. #MLSEV 17 Association Discovery date customer account auth class zip amount Mon Bob 3421 pin clothes 46140 135 Tue Bob 3421 sign food 46140 401 Tue Alice 2456 pin food 12222 234 Wed Sally 6788 pin gas 26339 94 Wed Bob 3421 pin tech 21350 2459 Wed Bob 3421 pin gas 46140 83 Thr Sally 6788 sign food 26339 51 An unsupervised algorithm that looks for coincidences in the data and returns association rules with an antecedent, a consequent and several metrics. It is very useful for data exploration amongst other goals. Example: zip = 46140 amount < 100 Antecedent Consequent Rules: {customer = Bob, account = 3421} {class = gas}
  • 18. #MLSEV 18 Association Discovery Consequent: Temp_range_10m > 0.3 degrees (temperature range in the next 10m)
  • 19. #MLSEV 19 Association Rule Example Rule summary • When: • pushing force metric has been high for 5 minutes • temperature has been to an average value for 5 minutes • material is currently being cumulated inside the machine • Then the oil gear temperature increases over 0.3 degrees during the next 10 minutes Rule metrics • 100% confidence (32 instances in 2 different rings)
  • 20. #MLSEV 20 Data Exploration • Multiple Association Discovery have been trained in the data exploration phase. In each case results were shared with SENER experts to identify irrelevant and interesting rules • After several iterations Association Discovery attributes were sufficiently optimized to produce interesting rules • A final set of rules was sent to SENER in order to select the most potentially interesting rules and proceed with specific analysis for each one • In general a large amount of rules contained negative material deviation features • Data observations showed material accumulations in the chamber were often tied to temperature raises
  • 21. #MLSEV 21 Data Visualization Grafana screenshot showing a case where negative material deviation (bottom right) happen together with gear oil temperature raise (top left)
  • 23. #MLSEV date customer account auth class zip amount Mon Bob 3421 pin clothes 46140 135 Tue Bob 3421 sign food 46140 401 Tue Alice 2456 pin food 12222 234 Wed Sally 6788 pin gas 26339 94 Wed Bob 3421 pin tech 21350 2459 Wed Bob 3421 pin gas 46140 83 Thr Sally 6788 sign food 26339 51 23 Anomaly Detection An unsupervised algorithm that looks for unusual instances in a dataset. Anomaly detectors provide an anomaly score to each instance, the higher is the score the most unusual is the instance. Example: • Amount $2,459 is higher than all other transactions • Only transaction • In zip 21350 • For the purchase class “tech"
  • 24. #MLSEV 24 Anomaly Detector Features: Only material deviation variables
  • 25. #MLSEV 25 Anomaly Detector Results • Top anomalies often correspond to temperature raises over 0.3 degrees in the next 10 minutes • Filtering anomaly scores over 50% results into 4.5% of the original data including 12.6% of the original temperature raise instances • Resulting dataset is more balanced: 11.8% temperature raises (orange data points in the graph)
  • 27. #MLSEV 27 Classification • After filtering high anomaly scores the dataset is more balanced and classification makes sense with supervised learning. The goal is to predict whether the gear oil temperature will raise considerably in the future 10 minutes • Data has been split linearly to evaluate models: • Training dataset 70%: 3687 rows, 273 with high temperature raise • Test dataset 30%: 1804 rows, 377 with high temperature raise • Feature engineering and feature selection has been performed resulting into a subset of features including material deviation, oil temperature and some generic parameters
  • 28. #MLSEV 28 Decision Tree Decision trees being simple and interpretable have been chosen as the initial classification approach
  • 29. #MLSEV 29 Decision Tree Evaluation • Precision and Recall are 45.5% and 48.3% respectively. Not specially high but still better than average. This means predictions are possible. Results are much better than in preliminar tests • Ideally current evaluation results should be improved • OptiML has been used to optimize the algorithm and parameters choice
  • 30. #MLSEV 30 OptiML Model Optimization • An OptiML has been trained to optimize ROC Area Under the Curve metric using the same training and test datasets • OptiML resulting ROC AUC measures appear much higher than the decision tree ones, there is a clear improvement • Best results are achieved by decision tree ensembles
  • 31. #MLSEV 31 Ensemble Evaluation • With a 39% probability threshold precision and recall values 50.9% and 69.5% • This means model would be able to predict half of the temperature raises and 70% predictions would be correct • The Area Under the ROC Curve (ROC AUC) is almost 80% which is a good overall indicator for the model
  • 33. #MLSEV 33 Workflow TUNNEL DATA SOURCE ORIGINAL DATASET ADD FEATURES DATA CLEANING ASSOCIATION RULES EXPLORATION ML READY DATASET MATERIAL DEVIATION ANOMALY DETECTOR ANOMALY SCORE > 0.5 FILTER HIGH ANOMALY SCORED DATASET TRAIN 70% TEST 30% ENSEMBLE PREDICT HIGH TEMPERATURE RAISE EVALUATION OPTIML MODEL OPTIMIZATION
  • 34. #MLSEV 34 Results • An Anomaly Detector has isolated 12.6% of all temperature raise cases within a smaller dataset (4.6% overall). 650 temperature raises were filtered into a smaller dataset of 5501 instances • Based on Recall in the evaluation, overall 8.8% of temperature raises would be predicted by the Anomaly Detector together with the Ensemble • Based on Precision, the Anomaly Detector together with the Ensemble could predict a temperature raise on 3.8% of the original dataset with 1.9% correct predictions • Based on this numbers the Machine Learning workflow could predict 8.8% temperature raises and provided predictions would have a 50% reliability
  • 35. #MLSEV 35 Conclusions •Material deviation real time alerts could be implemented in Tunnel Boring Machines using this method •It has been proved Machine Learning means can provide useful TBM insights •Plenty of other Machine Learning analyses and implementations are possible in TBMs. An advanced cockpit could be implemented