Update README.md
Browse files
README.md
CHANGED
|
@@ -17,16 +17,12 @@ tags:
|
|
| 17 |
---
|
| 18 |
|
| 19 |
# Depth Estimation Using ResNet50 and XGBoost
|
|
|
|
|
|
|
| 20 |
|
| 21 |
## Overview
|
| 22 |
This project demonstrates a depth estimation XgBoost Regressor model that predicts the average depth of images provided using features extracted from a pre-trained ResNet50 model.The model was trained upon the **NYUv2 dataset** ([0jl/NYUv2](https://huggingface.co/datasets/0jl/NYUv2)). The trained model is saved as using Python's `pickle` library for easy deployment and reuse.
|
| 23 |
|
| 24 |
-
## License
|
| 25 |
-
This project is licensed under the Apache License 2.0.
|
| 26 |
-
|
| 27 |
-
## Author
|
| 28 |
-
**Vishal Adithya.A**
|
| 29 |
-
|
| 30 |
### Loading the Model
|
| 31 |
The model is saved as `model.pkl` using `pickle`. You can load and use it as follows:
|
| 32 |
|
|
@@ -112,6 +108,10 @@ If you want to retrain the model, follow these steps:
|
|
| 112 |
```
|
| 113 |
NOTE: This pipeline has just the base fundamental code more additional parameter tunings and preprocessing steps were being conducted during the training of the original model
|
| 114 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 115 |
## Acknowledgments
|
| 116 |
- Hugging Face for hosting the NYUv2 dataset.
|
| 117 |
- NVIDIA RTX 4060 Ti for providing efficient GPU acceleration.
|
|
|
|
| 17 |
---
|
| 18 |
|
| 19 |
# Depth Estimation Using ResNet50 and XGBoost
|
| 20 |
+
## Author
|
| 21 |
+
- **Vishal Adithya.A**
|
| 22 |
|
| 23 |
## Overview
|
| 24 |
This project demonstrates a depth estimation XgBoost Regressor model that predicts the average depth of images provided using features extracted from a pre-trained ResNet50 model.The model was trained upon the **NYUv2 dataset** ([0jl/NYUv2](https://huggingface.co/datasets/0jl/NYUv2)). The trained model is saved as using Python's `pickle` library for easy deployment and reuse.
|
| 25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
### Loading the Model
|
| 27 |
The model is saved as `model.pkl` using `pickle`. You can load and use it as follows:
|
| 28 |
|
|
|
|
| 108 |
```
|
| 109 |
NOTE: This pipeline has just the base fundamental code more additional parameter tunings and preprocessing steps were being conducted during the training of the original model
|
| 110 |
|
| 111 |
+
|
| 112 |
+
## License
|
| 113 |
+
This project is licensed under the Apache License 2.0.
|
| 114 |
+
|
| 115 |
## Acknowledgments
|
| 116 |
- Hugging Face for hosting the NYUv2 dataset.
|
| 117 |
- NVIDIA RTX 4060 Ti for providing efficient GPU acceleration.
|