Skip to content

Commit

Permalink
Merge pull request #617 from StanfordVL/profiling-on-readme
Browse files Browse the repository at this point in the history
Add profiling information, badges to README
  • Loading branch information
cgokmen authored Feb 23, 2024
2 parents abadd6e + 0eb744c commit 871a217
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
![splash](./docs/assets/splash.png)

# <h1><img height="40" src="./docs/assets/OmniGibson_logo.png" style="float:left;padding-right:10px"> OmniGibson</h1>

###
[![Tests](https://github.com/StanfordVL/OmniGibson/actions/workflows/tests.yml/badge.svg?branch=og-develop&event=push)](https://github.com/StanfordVL/OmniGibson/actions/workflows/tests.yml)
[![Docker Image Version (latest by date)](https://img.shields.io/docker/v/stanfordvl/omnigibson?label=docker&sort=semver)](https://hub.docker.com/r/stanfordvl/omnigibson)
[![Realtime Speed](https://behavior.stanford.edu/knowledgebase/profile/badge.svg)](https://stanfordvl.github.io/OmniGibson/profiling/)

-------

## Need support? Join our Discord!
### Need support? Join our Discord!
<a href="https://discord.gg/bccR5vGFEx"><img src="https://discordapp.com/api/guilds/1166422812160966707/widget.png?style=banner3"></a>

-------

## Latest Updates
### Latest Updates
- [08/04/23] **v0.2.0**: More assets! 600 pre-sampled tasks, 7 new scenes, and many new objects 📈 [[release notes]](https://github.com/StanfordVL/OmniGibson/releases/tag/v0.2.0)

- [04/10/22] **v0.1.0**: Significantly improved stability, performance, and ease of installation :wrench: [[release notes]](https://github.com/StanfordVL/OmniGibson/releases/tag/v0.1.0)
Expand Down Expand Up @@ -42,3 +43,8 @@ year={2022},
url={https://openreview.net/forum?id=_8DoIe8G3t}
}
```

### Profiling
Click on the plot to access our profiling page with more examples.

[![Profiling](https://behavior.stanford.edu/knowledgebase/profile/plot.png)](https://stanfordvl.github.io/OmniGibson/profiling/)
5 changes: 2 additions & 3 deletions scripts/profiling.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,9 @@ function init() {

// Render footer
document.getElementById('dl-button').onclick = () => {
const dataUrl = 'data:,' + JSON.stringify(data, null, 2);
const a = document.createElement('a');
a.href = dataUrl;
a.download = 'OmniGibson_profiling.json';
a.href = URL.createObjectURL(new Blob([JSON.stringify(data, null, 2)], {type: "application/json"}));
a.download = 'OmniGibson Profiling.json';
a.click();
};

Expand Down

0 comments on commit 871a217

Please sign in to comment.