Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Unofficial implementation of Unsupervised Monocular Depth Estimation neural network MonoDepth in PyTorch
| Date | Stars |
|---|---|
| 2026-07-24 | 554 |
| 2026-07-25 | 554 |
| 2026-07-28 | 554 |
| 2026-07-30 | 554 |
| 2026-07-31 | 554 |
| 2026-08-06 | 554 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
# MonoDepth

This repo is inspired by an amazing work of [Clément Godard](http://www0.cs.ucl.ac.uk/staff/C.Godard/), [Oisin Mac Aodha](http://vision.caltech.edu/~macaodha/) and [Gabriel J. Brostow](http://www0.cs.ucl.ac.uk/staff/g.brostow/) for Unsupervised Monocular Depth Estimation.
Original code and paper could be found via the following links:
1. [Original repo](https://github.com/mrharicot/monodepth)
2. [Original paper](https://arxiv.org/abs/1609.03677)
## MonoDepth-PyTorch
This repository contains code and additional parts for the PyTorch port of the MonoDepth Deep Learning algorithm. For more information about original work, please visit [author's website](http://visual.cs.ucl.ac.uk/pubs/monoDepth/)
## Purpose
Purpose of this repository is to make a more lightweight model for depth estimation with better accuracy.
In our version of MonoDepth, we used ResNet50 as an encoder. It was slightly changed (with one more lateral shrinkage) as well as in the original repo.
Also, we add ResNet18 version and used batch normalization in both cases for training stability.
Moreover, we made flexible feature extractor with any version of original Resnet from torchvision models zoo
with an option to use pretrained models.
## Dataset
### KITTI
This algorithm requires stereo-pair images for training and single images for testing.
[KITTI](http://www.cvlibs.net/datasets/kitti/raw_data.php) dataset was used for training.
It contains 38237 training samples.
Raw dataset (about 175 GB) can be downloaded by running:
```shell
wget -i kitti_archives_to_download.txt -P ~/my/output/folder/
```
kitti_archives_to_download.txt may be found in this repo.
## Dataloader
Dataloader assumes the following structure of the folder with train examples (**'data_dir'** argument contains path to that folder):
The folder contains subfolders with following folders "image_02/data" for left images and "image_03/data" for right images.
Such structure is default for KITTI dataset
Example data folder structure (path to the "kitti" directory should be passed as **'data_dir'** in this example):
```
data
├── kitti
│ ├── 2011_09_26_drive_0001_sync
│ │ ├── image_02
│ │ │ ├─ data
│ │ │ │ ├── 0000000000.png
│ │ │ │ └── ...
│ │ ├── image_03
│ │ │ ├── data
│ │ │ │ ├── 0000000000.png
│ │ │ │ └── ...
│ ├── ...
├── models
├── output
├── test
│ ├── left
│ │ ├── test_1.jpg
│ │ └── ...
```
## Training
Example of training can be find in [Monodepth](Monodepth.ipynb) notebook.
Model class from main_monodepth_pytorch.py should be initialized with following params (as easydict) for training:
- `data_dir`: path to the dataset folder
- `val_data_dir`: path to the validation dataset folder
- `model_path`: path to save the trained model
- `output_directory`: where save dispairities for tested images
- `input_height`
- `input_width`
- `model`: model for encoder (resnet18_md or resnet50_md or any torchvision version of Resnet (resnet18, resnet34 etc.)
- `pretrained`: if use a torchvision model it's possible to download weights for pretrained model
- `mode`: train or test
- `epochs`: number of epochs,
- `learning_rate`
- `batch_size`
- `adjust_lr`: apply learning rate decay or not
- `tensor_type`:'torch.cuda.FloatTensor' or 'torch.FloatTensor'
- `do_augmentation`:do data augmentation or not
- `augment_parameters`:lowest and highest values for gamma, lightness and color respectively
- `print_images`
- `print_weights`
- `input_channels` Number of channels in input tensor (3 for RGB images)
- `num_workers` Number of workers to use in dataloader
Optionally after initialization, we can load a pretrained model via `model.load`.
After that calling train() on Model class object starts the training process.
Also, it can be started via calling main_monodepth_pytorch.py through the terminal and feeding parameters as argparse arguments.
## Train results and prExcerpt of 5,929 characters
Read on GitHub33
13
10
1
Would you bet a product on this? Bounded 0–100 and slow moving.
matched fp:4b9352ff92baba26, topic:deep-learning, topic:pytorch
matched fp:4b9352ff92baba26, topic:computer-vision, desc:depth estimation, readme:depth estimation