pushing model
Browse files- .gitattributes +3 -0
- README.md +2 -2
- events.out.tfevents.1700810954.4090-171.1713824.0 β events.out.tfevents.1704463412.4090-171.159960.0 +1 -1
- ppo_fix_continuous_action.py +1 -1
- replay.mp4 +2 -2
- videos/{HalfCheetah-v4__ppo_fix_continuous_action__1__1700810944-eval β HalfCheetah-v4__ppo_fix_continuous_action__1__1704463403-eval}/rl-video-episode-0.mp4 +2 -2
- videos/{HalfCheetah-v4__ppo_fix_continuous_action__1__1700810944-eval β HalfCheetah-v4__ppo_fix_continuous_action__1__1704463403-eval}/rl-video-episode-1.mp4 +2 -2
- videos/{HalfCheetah-v4__ppo_fix_continuous_action__1__1700810944-eval β HalfCheetah-v4__ppo_fix_continuous_action__1__1704463403-eval}/rl-video-episode-8.mp4 +2 -2
.gitattributes
CHANGED
@@ -37,3 +37,6 @@ videos/HalfCheetah-v4__ppo_fix_continuous_action__1__1700810944-eval/rl-video-ep
|
|
37 |
videos/HalfCheetah-v4__ppo_fix_continuous_action__1__1700810944-eval/rl-video-episode-1.mp4 filter=lfs diff=lfs merge=lfs -text
|
38 |
videos/HalfCheetah-v4__ppo_fix_continuous_action__1__1700810944-eval/rl-video-episode-0.mp4 filter=lfs diff=lfs merge=lfs -text
|
39 |
replay.mp4 filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
37 |
videos/HalfCheetah-v4__ppo_fix_continuous_action__1__1700810944-eval/rl-video-episode-1.mp4 filter=lfs diff=lfs merge=lfs -text
|
38 |
videos/HalfCheetah-v4__ppo_fix_continuous_action__1__1700810944-eval/rl-video-episode-0.mp4 filter=lfs diff=lfs merge=lfs -text
|
39 |
replay.mp4 filter=lfs diff=lfs merge=lfs -text
|
40 |
+
videos/HalfCheetah-v4__ppo_fix_continuous_action__1__1704463403-eval/rl-video-episode-8.mp4 filter=lfs diff=lfs merge=lfs -text
|
41 |
+
videos/HalfCheetah-v4__ppo_fix_continuous_action__1__1704463403-eval/rl-video-episode-1.mp4 filter=lfs diff=lfs merge=lfs -text
|
42 |
+
videos/HalfCheetah-v4__ppo_fix_continuous_action__1__1704463403-eval/rl-video-episode-0.mp4 filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -16,7 +16,7 @@ model-index:
|
|
16 |
type: HalfCheetah-v4
|
17 |
metrics:
|
18 |
- type: mean_reward
|
19 |
-
value:
|
20 |
name: mean_reward
|
21 |
verified: false
|
22 |
---
|
@@ -46,7 +46,7 @@ curl -OL https://huggingface.co/sdpkjc/HalfCheetah-v4-ppo_fix_continuous_action-
|
|
46 |
curl -OL https://huggingface.co/sdpkjc/HalfCheetah-v4-ppo_fix_continuous_action-seed1/raw/main/pyproject.toml
|
47 |
curl -OL https://huggingface.co/sdpkjc/HalfCheetah-v4-ppo_fix_continuous_action-seed1/raw/main/poetry.lock
|
48 |
poetry install --all-extras
|
49 |
-
python ppo_fix_continuous_action.py --save-model --hf-entity sdpkjc --seed 1 --
|
50 |
```
|
51 |
|
52 |
# Hyperparameters
|
|
|
16 |
type: HalfCheetah-v4
|
17 |
metrics:
|
18 |
- type: mean_reward
|
19 |
+
value: 1777.06 +/- 25.88
|
20 |
name: mean_reward
|
21 |
verified: false
|
22 |
---
|
|
|
46 |
curl -OL https://huggingface.co/sdpkjc/HalfCheetah-v4-ppo_fix_continuous_action-seed1/raw/main/pyproject.toml
|
47 |
curl -OL https://huggingface.co/sdpkjc/HalfCheetah-v4-ppo_fix_continuous_action-seed1/raw/main/poetry.lock
|
48 |
poetry install --all-extras
|
49 |
+
python ppo_fix_continuous_action.py --save-model --upload-model --hf-entity sdpkjc --env-id HalfCheetah-v4 --seed 1 --track
|
50 |
```
|
51 |
|
52 |
# Hyperparameters
|
events.out.tfevents.1700810954.4090-171.1713824.0 β events.out.tfevents.1704463412.4090-171.159960.0
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 376394
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7fbb325da441b95f18efe776d8483af5329fbf53aa5c3e247edbada55754f81e
|
3 |
size 376394
|
ppo_fix_continuous_action.py
CHANGED
@@ -430,7 +430,7 @@ if __name__ == "__main__":
|
|
430 |
|
431 |
# https://github.com/DLR-RM/stable-baselines3/pull/658
|
432 |
for idx, trunc in enumerate(truncations):
|
433 |
-
if trunc:
|
434 |
real_next_obs = infos["final_observation"][idx]
|
435 |
with torch.no_grad():
|
436 |
terminal_value = agent.get_value(torch.Tensor(real_next_obs).to(device)).reshape(1, -1)[0][0]
|
|
|
430 |
|
431 |
# https://github.com/DLR-RM/stable-baselines3/pull/658
|
432 |
for idx, trunc in enumerate(truncations):
|
433 |
+
if trunc and not terminations[idx]:
|
434 |
real_next_obs = infos["final_observation"][idx]
|
435 |
with torch.no_grad():
|
436 |
terminal_value = agent.get_value(torch.Tensor(real_next_obs).to(device)).reshape(1, -1)[0][0]
|
replay.mp4
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6282fa1675fd6f69ed6fdf5e21d3b3e1c6ce023c0a77ad82162b4409a94648a7
|
3 |
+
size 1947876
|
videos/{HalfCheetah-v4__ppo_fix_continuous_action__1__1700810944-eval β HalfCheetah-v4__ppo_fix_continuous_action__1__1704463403-eval}/rl-video-episode-0.mp4
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3ace17e6c1cb3ced131fc1d7f6a80beefec2542a775acf4e139041d2688caafa
|
3 |
+
size 1972380
|
videos/{HalfCheetah-v4__ppo_fix_continuous_action__1__1700810944-eval β HalfCheetah-v4__ppo_fix_continuous_action__1__1704463403-eval}/rl-video-episode-1.mp4
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a219e9231e637e722eca508385765445e3da213594d79010272f9532fd9afaaf
|
3 |
+
size 1988387
|
videos/{HalfCheetah-v4__ppo_fix_continuous_action__1__1700810944-eval β HalfCheetah-v4__ppo_fix_continuous_action__1__1704463403-eval}/rl-video-episode-8.mp4
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6282fa1675fd6f69ed6fdf5e21d3b3e1c6ce023c0a77ad82162b4409a94648a7
|
3 |
+
size 1947876
|