Reputation: 11
im building my project to end my course in the computer science, and now i have some troubles to ask. im building a software to work with raspberry pi to send the OBD (onboard diagnostics) data of a car, bus or truck to a server, and, in the server i want use some AI to find possible motor fail. now im researching the info i can have with OBD and i see in my way a big trouble, how can i diagnose the car with AI? i need a algorithm that know the good status of the vehicle and when the system goes to poor condition the algorithm know this state and send an alert to the user. finally, i want miner some data to find the possible errors, the data are in integers range, or can be float. how i can do this?
Upvotes: 0
Views: 258
Reputation: 406
I didn't find any prepared algorithms for that. You have to design some rule-based heuristics analysing OBD PID values in long-term basis. Some problems can be discovered in simple manner, for instance:
You can use machine learning algorithms as well but I guess model training process would be difficult.
Upvotes: 0