Please enable JavaScript.
Coggle requires JavaScript to display documents.
Case Study (Terminology (Greedy Algorithm (Example: Nearest neighbor…
Case Study
Terminology
-
-
-
Overfitting
Overfitting occurs when a model learns a model too well. It learns the noise (irrelevant information in the training data) too well and learns undesired behaviour
-
Greedy Algorithm
Example: Nearest neighbor algorithm Finding the local optimum / shortest path between two nodes, which doesn't always result in the most efficient solution
-
-
-
-
Machine Learning
Refers to a subfield in computer science that deals will allowing a computer to learn without programming. Specifically Pattern learning
-
-
Sensor Fusion
Refers to the combination of data from different sensors. This reduces uncertainty of the final result. Multiple sensors can act as redundancies, in the case that one sensor fails due to a natural cause e.g fog or technical failure, jamming
Centralised: All the inputs forward the data to a central location where a single processor is responsible for correlating and fusing the data
-
-
Decentralised System: Each client/device is responsible for fusing data. Each device can be viewed as intelligent and has a certain degree of autonomy
Advantage :check:
-
The ECU does not need to have high processing power because it is only object data. Adding a sensor does not require a significant increase in power because most of the processing can be handled by the new sesnor
Disadvantage :red_cross:
Sensor's require an application processor resulting in higher costs per sensor and also larger sensors as well
The ECU (Electrical Control unit) / central processor does not have access to all of the data. Only object data, not actual sensor data
-
-
Deep Learning
A subfield of machine learning Refers to artificial neural networks that have many layers #
-
Backpropogation
A type of algorithm that entails comparing the desired output to the measured output. The error is then propagated to the previous layer where the weights and biases are adjusted until the error is below a certain error threshold I.e the cost function, a function that calculates gradient (difference between desired output and measured output) . New input is received by the network
-
-
-
-