Upload MPTransformer model
Browse files
README.md
CHANGED
|
@@ -4,12 +4,12 @@ tags:
|
|
| 4 |
- pytorch
|
| 5 |
- robotics
|
| 6 |
- custom-code
|
| 7 |
-
library_name:
|
| 8 |
---
|
| 9 |
|
| 10 |
# MPTransformer
|
| 11 |
|
| 12 |
-
This repository contains an `MPTransformer` model exported from the `
|
| 13 |
|
| 14 |
## Files
|
| 15 |
|
|
@@ -20,7 +20,7 @@ This repository contains an `MPTransformer` model exported from the `nmp` codeba
|
|
| 20 |
## Load
|
| 21 |
|
| 22 |
```python
|
| 23 |
-
from
|
| 24 |
|
| 25 |
model = MPTransformer.from_pretrained("jimyoung6709/DRP")
|
| 26 |
model.eval()
|
|
@@ -32,4 +32,4 @@ Exported from `best.pt`.
|
|
| 32 |
|
| 33 |
## Notes
|
| 34 |
|
| 35 |
-
This model depends on the local `
|
|
|
|
| 4 |
- pytorch
|
| 5 |
- robotics
|
| 6 |
- custom-code
|
| 7 |
+
library_name: drp
|
| 8 |
---
|
| 9 |
|
| 10 |
# MPTransformer
|
| 11 |
|
| 12 |
+
This repository contains an `MPTransformer` model exported from the `drp` codebase.
|
| 13 |
|
| 14 |
## Files
|
| 15 |
|
|
|
|
| 20 |
## Load
|
| 21 |
|
| 22 |
```python
|
| 23 |
+
from drp.model.transformer import MPTransformer
|
| 24 |
|
| 25 |
model = MPTransformer.from_pretrained("jimyoung6709/DRP")
|
| 26 |
model.eval()
|
|
|
|
| 32 |
|
| 33 |
## Notes
|
| 34 |
|
| 35 |
+
This model depends on the local `drp` package and project-specific dependencies such as `pointnet2_ops`.
|