Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geyang/plan2vec
Public Release of Plan2vec Implementation in pyTorch
https://github.com/geyang/plan2vec
Last synced: about 2 months ago
JSON representation
Public Release of Plan2vec Implementation in pyTorch
- Host: GitHub
- URL: https://github.com/geyang/plan2vec
- Owner: geyang
- Created: 2020-05-04T19:12:17.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-10-28T04:01:38.000Z (about 2 years ago)
- Last Synced: 2024-04-14T15:11:52.190Z (9 months ago)
- Language: Python
- Size: 88.1 MB
- Stars: 55
- Watchers: 10
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Plan2Vec: Unsupervised Representation Learning by Latent Plans
**Official repo for [Plan2Vec](https://geyang.github.io/plan2vec).**
We are working on a clean implementation of the expert distillation variant of the plan2vec algorithm for public release.
## Code
This code base has been split up into a few different components that each lives in its own repository.
- For planning, code, refer to the `graph-search` package on PyPI (https://github.com/geyang/graph-search). This is my canonical implementation of the graph planning algorithms and is used in a number of other projects. This repo contains visualization of planing results.
- Here is the pre-processing pipeline for the StreetLearn dataset. I reverse engineered the buffer format: https://github.com/geyang/streetlearn
- The `plan2vec` module should be inside [./plan2vec](./plan2vec). The best result was given under the supervised mode, where the distance between samples are given by the shortest path between the corresponding nodes on the graph.All experiment scripts live in the `plan2vec_experiments` folder.
## BibTex
```
@inproceedings{yang2020plan2vec,
title={Plan2vec: Unsupervised Representation Learning by Latent Plans},
author={Yang, Ge and Zhang, Amy and Morcos, Ari S. and Pineau, Joelle and Abbeel, Pieter and Calandra, Roberto},
booktitle={Proceedings of The 2nd Annual Conference on Learning for Dynamics and Control},
series={Proceedings of Machine Learning Research},
pages={1-12},
year={2020},
volume={120},
note={arXiv:2005.03648}
}
```