Skip to content

Commit 1326f65

Browse files
authored
Merge pull request #355 from wedesoft/ppo-draft-2
Add missing numpy package
2 parents 53e35a1 + 539c4b9 commit 1326f65

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/render-and-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
pip install plotly kaleido
26-
pip install --index-url https://download.pytorch.org/whl/cpu torch
26+
pip install --index-url https://download.pytorch.org/whl/cpu torch numpy
2727
2828
- name: Set up Java
2929
uses: actions/setup-java@v4

src/ppo/main.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
(ns ppo.main
1414
(:require [libpython-clj2.require :refer (require-python)]))
1515

16-
1716
(require-python '[torch :as torch])
1817

18+
;; Recently I started to look into the problem of reentry trajectory planning in the context of developing the [sfsim](https://store.steampowered.com/app/3687560/sfsim/) space flight simulator.
1919

2020
;; ![pendulum](pendulum.png)

0 commit comments

Comments
 (0)