Skip to content

Commit

Permalink
add github ci/cd and assets
Browse files Browse the repository at this point in the history
  • Loading branch information
Youshaa Murhij committed Feb 11, 2024
1 parent d98aac3 commit 29f1ff4
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Build/Tests
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
cd docker && ./build.sh
deployment:
name: Deployment
runs-on: ubuntu-20.04
needs: [build]
steps:
- uses: actions/checkout@v1
- name: Deploy
run: |
echo "deploy is OK!"
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# DAGM-Mono: Deformable Attention-Guided Modeling for Monocular 3D Reconstruction

![workflow](https://github.com/YoushaaMurhij/DAGM-Mono/actions/workflows/main.yml/badge.svg) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)

## Introduction
This repo is the Pytorch Code of DAGM-Mono: Deformable Attention-Guided Modeling for Monocular 3D Reconstruction.

### DAGM-Mono main pipeline:
<img src="./assets\DAGM-Mono.png" alt="drawing" width="800"/>


## Data setting
Expand All @@ -20,9 +23,9 @@ ${CODE Root}
|-- images
```

- Download annotation files to fill in `apollo_annot` [[hear](https://drive.google.com/file/d/1qCUdjJEnKS7jyXDVuDBO5wCYZFeo1VsY/view?usp=sharing)].
- Download annotation files to fill in `apollo_annot` [[here](https://drive.google.com/file/d/1qCUdjJEnKS7jyXDVuDBO5wCYZFeo1VsY/view?usp=sharing)].

- Download image files to fill in `images` [[hear](https://apolloscape.auto/car_instance.html)].
- Download image files to fill in `images` [[here](https://apolloscape.auto/car_instance.html)].


## Usage:
Expand Down
Binary file added assets/DAGM-Mono.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 29f1ff4

Please sign in to comment.