This project is mirrored from https://github.com/facebookresearch/habitat-lab.
Pull mirroring updated .
- Jul 26, 2019
-
-
JasonJiazhiZhang authored
-
Abhishek Kadian authored
* convert jupyter notebooks to sphynx tutorial * update download links * habitat-sim demo, update image links * add documentation link, remove PRs welcome * nit * remove habitat-api_structure.png
-
- Jul 25, 2019
-
-
Erik Wijmans authored
* Refactor baselines to allow for extension * Make clip an after-backward * Loop over rollout step instead of function for full rollout
-
Erik Wijmans authored
* Make fog-of-war darker and make that value changeable
-
JasonJiazhiZhang authored
Update baseline test import and fix docstring
-
- Jul 22, 2019
-
-
JasonJiazhiZhang authored
* refactor and add generic trainer class * fix to pass tests * change BaseModel to BaseTrainer * fix tensorboard import causing CI failure * modify circle-ci test script accordingly * doc, typing and other changes * rename BASELINE to TRAINER * merge from upstream master * Update Habitat-API to allow for no rendering sensors (#139) Update Habitat-API to allow for no rendering sensors * Added installation requirements step for sim installation in CI setup. (#159) Added installation requirements step for sim installation in CI setup * move RolloutStorage to utils * add environments.py * make ckpt dir if not exist * small fixes according to comments * changes according to comments * update readme * fix old config compatibility * fix missed isort lint
-
- Jul 18, 2019
-
-
Oleksandr authored
* fixed PyTorch caching * added ccache to CI * broke habitat api step on installation and testing to save extra 5 min on saving cache in parallel * testing time drops from first run to second run from 17.5 minutes to 9 minutes (2x times) for full testing.
-
- Jul 17, 2019
-
-
Erik Wijmans authored
* Add fog-of-war to topdown map
-
JasonJiazhiZhang authored
Make env access episode through iterator
-
- Jul 16, 2019
-
-
Oleksandr authored
Added installation requirements step for sim installation in CI setup
-
- Jul 15, 2019
-
-
Erik Wijmans authored
Update Habitat-API to allow for no rendering sensors
-
- Jul 11, 2019
-
-
Vladimír Vondruš authored
This does the necessary adaptation to facebookresearch/habitat-sim#64 -- this was the only failure in habitat-sim's CI tests
-
- Jul 05, 2019
-
-
JasonJiazhiZhang authored
* episode stats changed to dict of dicts * handle non-unique episode_id * use tuple as key * update while loop checking Co-Authored-By:
Erik Wijmans <ewijmans2@gmail.com>
-
- Jul 04, 2019
-
-
danielgordon10 authored
* made simulator actions iterable
-
- Jun 29, 2019
-
-
Erik Wijmans authored
* Fix quickstart
-
JasonJiazhiZhang authored
* Add checkpoint progress tracking for evalute_ppo. Now when specified with a checkpoint directory, * Evaluate_ppo will evaluate checkpoints in chronological order, and constantly check for new checkpoint. * Add tensorboard visualization to both train_ppo and evaluate_ppo * Add video generation for navigation episode evaluation. Generated videos can be either saved locally or visualized through tensorboard. * Add shortest path visualization
-
- Jun 25, 2019
-
-
Oleksandr authored
Updated version to 0.1.2
-
- Jun 19, 2019
-
-
JasonJiazhiZhang authored
Limit requirements search scope to habitat_baselines folder.
-
- Jun 17, 2019
-
-
JasonJiazhiZhang authored
Fix issue with POINTNAVV1 fix.
-
- Jun 15, 2019
-
-
Erik Wijmans authored
SimulatorActions is no longer an enum. It is an extendable singleton. It allows you to extend the action space but it is quite strict about it. Actions cannot be put on different ints, actions cannot be remove. There is now a registry for action space configurations.
-
Ricardo Cuenca authored
Fix docs typo: step() -> act()
-
Abhishek Kadian authored
* Modify partitioning logic to handle left-over scenes due to integer division
-
Oleksandr authored
Added description how to use config system, fixed missing copyright headers, improved example and isort CI (#125) * Added description how to use config system related to #20. * Added missing copyright headers * Improve registry example to be cleaner * Adde habitat_sim as first party lib to isort CI setup
-
- Jun 14, 2019
-
-
JasonJiazhiZhang authored
* Generalize PPO with both PointNav goal sensors * generalize simple agents and fix lint * Removed dataset specific nodes
-
Oleksandr authored
* Made isort for CI check only * Added badges
-
Oleksandr authored
Updated baselines readme, fixed links, added link to checkpoints.
-
Erik Wijmans authored
* Fix the citation * Caps
-
- Jun 11, 2019
-
-
JasonJiazhiZhang authored
Expose other measures through get_info in NavRLEnv
-
Olivia authored
* Adding jupyter notebook illustrating demonstrating how to extract camera parameters in the scene and how these camera parameters relate to the given views with proper testing.
-
- Jun 10, 2019
-
-
Bhavana Mahendra Jain authored
* check scene paths, minor fix in pointnav generator
-
Erik Wijmans authored
Fixes and upgrades the collision logic.
-
Abhishek Kadian authored
Asterisk for co-first author messes up alphabetical ordering in references section.
-
- Jun 07, 2019
-
-
Bhavana Mahendra Jain authored
The habitat-api-demo.ipynb notebook illustrates how to specify config parameters, print semantic annotations of a scene. It also visualises the RGB, semantic and depth observations obtained by executing a random sequence of actions.
-
- Jun 06, 2019
-
-
Abhishek Kadian authored
Adds documentation for habitat-api, to view the docs follow instructions in docs/README.md and view the html files from the build folder.
-
JasonJiazhiZhang authored
- add config option NUM_SAMPLE_EPISODE, with default value -1 that indicates use all episodes. When set value to non-negative integer, pointna_dataset will sample the specified number of episodes. - fix the functionality of merging multiple config files. Now can specify more than one config file like this --task-config "a.yaml" "b.yaml"
-
Erik Wijmans authored
Our registry pattern is far from idea and thus we haven't used it consistent. This PR aims to resolve this by copying the registry pattern used in Pythia (as it is much nicer) and then registering all current measures and sensors and using the register to query for those instead of getattr as this is a more clearly extendable pattern (as compared to monkey patching).
-
danielgordon10 authored
Utility method for getting the current observation. Sometimes you want the observation without having to make a step/reset call for whatever reason.
-
Oleksandr authored
* Builds and installs habitat-sim with python setup.py install * Added pytorch installation and running habitat baseline test in prediction mode. That maybe too much of testing, but decided to keep it for now. * Have ideas how to speed up and parallelize jobs. Will follow up in next PRs. * Run isort and black on whole code to make it happy. * Includes parallelization of installation steps and use files as flags that step is finished. CircleCI has no good way to parallelize steps and have dependencies one the same machine. * Cache is used to save conda dependencies installed and build simulator based on commit SHA.
-
Erik Wijmans authored
* Fix the broken tests by attr pr
-