Skip to content

Commit

Permalink
minor updates, readme, requirements. Release Point cloud extractor (GUI)
Browse files Browse the repository at this point in the history
  • Loading branch information
yun-long committed Sep 22, 2020
1 parent e863020 commit 67d5ff5
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ Flightmare can be used for various applications, including path-planning, reinfo
## Installation
Installation instructions can be found in our [Wiki](https://github.com/uzh-rpg/flightmare/wiki).

## Updates
* 04.09.2020 Release Flightmare

## Publication

If you use this code in a publication, please cite the following paper **[PDF](https://arxiv.org/abs/2009.00563)**
Expand Down
12 changes: 12 additions & 0 deletions flightlib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,19 @@ def run(self):
print("Removing some cache file: ", p)
except:
pass
FLIGHTLIB_BUILD_FILES = os.environ["FLIGHTMARE_PATH"] + \
"/flightlib/build/"
# --------------------------------
# remove cached build files
# a hack to solve some cmake error when using "pip install ."
try:
for i, p in enumerate(glob.glob(os.path.join(FLIGHTLIB_EXTERNAL_FILES, "*"))):
shutil.rmtree(p)
print("Removing some cache file: ", p)
except:
pass
# --------------------------------

try:
out = subprocess.check_output(['cmake', '--version'])
except OSError:
Expand Down
2 changes: 1 addition & 1 deletion flightrl/examples/view_reward.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def plot_reward(save_dir, varname, ylabel, save_fig=False):


if __name__ == "__main__":
logger_dir = "./saved/2020-08-28-14-59-38/"
logger_dir = "./saved/2020-09-22-13-46-21/"
ppo_var_names = ["ep_reward_mean", "ep_len_mean", "policy_entropy"]
ppo_y_labels = ["Reward", "Episode Length", "Policy Entropy"]
#
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
tensorflow == 1.8.0
tensorflow-gpu==1.8.0
scikit-build

0 comments on commit 67d5ff5

Please sign in to comment.