Created using Colab - #27
Open
Shibika-Roy wants to merge 2 commits into
Open
Conversation
Author
|
please level this as gssoc extd 2024 and hactober fest acceptd |
Owner
|
Let me review it, I'll merge it once I've been through or if there are any issues. |
Owner
|
What specific benefits were you hoping to achieve by adding this separate sensor model? And there was no use of the dataset, I recommend training it on the dataset and submit along accuracy and loss over training. |
Owner
|
Your sensor model does not have anything unique, please read some papers/tutorial on hybrid and multimodality. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
"Hybrid Terrain Classification: Added CNN with Sensor Fusion using TensorFlow Keras"
Overview:
This pull request introduces the following enhancements to the terrain classification system:
CNN-based Image Classification:
Added a Convolutional Neural Network (CNN) for terrain classification from input images. The model processes 64x64 RGB images and includes two convolutional layers followed by dense layers for feature extraction.
Sensor Fusion:
Integrated sensor data (e.g., accelerometer, gyroscope) with the CNN model using fully connected layers to enhance classification accuracy. This approach helps the model consider not only visual features but also physical measurements for terrain classification.
Edge Computing Optimizations:
Prepared the model for edge computing deployment by adding TensorFlow Lite (TFLite) export functionality. The model is now optimized for running on low-resource devices like drones and robots for real-time terrain recognition in resource-constrained environments.
Testing:
Created dummy data (image and sensor data) for testing purposes to validate that the fusion of CNN and sensor data works effectively.