Update README.md
Browse files
README.md
CHANGED
@@ -5,4 +5,30 @@ tags:
|
|
5 |
- robotics
|
6 |
- vision
|
7 |
pipeline_tag: robotics
|
8 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
- robotics
|
6 |
- vision
|
7 |
pipeline_tag: robotics
|
8 |
+
---
|
9 |
+
|
10 |
+
<img style="max-width: 75vw;" src=https://cdn-uploads.huggingface.co/production/uploads/630e567f8df86f1e5bf0d837/CISEAH0AbTJVDJuZWkqFK.jpeg></img>
|
11 |
+
|
12 |
+
# Dobb·E
|
13 |
+
|
14 |
+
[Project webpage](https://dobb-e.com) · [Documentation (gitbooks)](https://docs.dobb-e.com) · [Paper](https://arxiv.org/abs/2311.16098)
|
15 |
+
|
16 |
+
**Authors**: [Mahi Shafiullah*](https://mahis.life), [Anant Rai*](https://raianant.github.io/), [Haritheja Etukuru](https://haritheja.com/), [Yiqian Liu](https://www.linkedin.com/in/eva-liu-ba90a5209/), [Ishan Misra](https://imisra.github.io/), [Soumith Chintala](https://soumith.ch), [Lerrel Pinto](https://lerrelpinto.com)
|
17 |
+
|
18 |
+
Open-source repository of the Home Pretrained Representation (HPR) of [Dobb·E](https://dobb-e.com) and the associated paper, [On Bringing Robots Home](https://arxiv.org/abs/2311.16098)
|
19 |
+
|
20 |
+
<video autoplay muted style="max-width: 75vw;" src="https://cdn-uploads.huggingface.co/production/uploads/630e567f8df86f1e5bf0d837/tmL48wY0F8eL2Mluizrw3.mp4"></video>
|
21 |
+
|
22 |
+
## What's on this repo
|
23 |
+
|
24 |
+
You can find our [Home Pretrained Models (HPR)](https://dobb-e.com/#models), which is a ResNet34 model trained on our dataset, [Homes of New York (HoNY)](https://dobb-e.com/#dataset), in this repo. You can download the weights if you want, or you can get started by using [Timm](https://huggingface.co/docs/timm/index).
|
25 |
+
|
26 |
+
```python
|
27 |
+
import timm
|
28 |
+
|
29 |
+
model = timm.create_model("hf-hub:notmahi/dobb-e", pretrained=True)
|
30 |
+
```
|
31 |
+
|
32 |
+
You can read more about it on our [paper](https://arxiv.org/abs/2311.16098) or our [website](https://dobb-e.com).
|
33 |
+
|
34 |
+
Let's bring some robots home!
|