Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
0461a1c
store checkpoints on wandb during offline training
Felhof Apr 27, 2023
f4c79af
Added test
JayBaileyCS Oct 11, 2023
485521d
Added extra test for checkpoints
JayBaileyCS Oct 11, 2023
18b9f28
Fixed train
JayBaileyCS Oct 11, 2023
9e21472
Readded lost test
JayBaileyCS Oct 11, 2023
642f209
Removed branch file that somehow got in there
JayBaileyCS Oct 11, 2023
91b77a8
Force added trajectory file
JayBaileyCS Oct 11, 2023
e5f44f5
Added Git LFS to allow for trajectory file
JayBaileyCS Oct 11, 2023
69105b0
Attempted build.yml fix for Git LFS
JayBaileyCS Oct 11, 2023
0d36044
Adjusted steps
JayBaileyCS Oct 11, 2023
7711589
Added save function to save directions
JayBaileyCS Oct 10, 2023
3af4767
Fixed tab not being there
JayBaileyCS Oct 10, 2023
2b181e7
Removed debug message, fixed edge case
JayBaileyCS Oct 10, 2023
bc4d4ec
Added features folder to store files
JayBaileyCS Oct 10, 2023
7d59853
Swapped device to str instead of torch.device to fix PyArrow problem
JayBaileyCS Oct 10, 2023
7470a7f
various
Oct 11, 2023
a6dc653
add basic feature saving
Oct 11, 2023
8b11fb3
add full ov with features
Oct 11, 2023
d73496f
notebook and feature loading
Oct 16, 2023
14a631c
Added first few sections of article.
JayBaileyCS Oct 17, 2023
ef980d7
Added example to draw from
JayBaileyCS Oct 17, 2023
8cb2026
Finished Introduction section scaffolding
JayBaileyCS Oct 17, 2023
ce89c9c
Added the rest of the article
JayBaileyCS Oct 19, 2023
dd28002
Added another section, fixed some issues
JayBaileyCS Oct 19, 2023
b2c87b0
Added a missing section, added images
JayBaileyCS Oct 19, 2023
228cbb3
Added links
JayBaileyCS Oct 19, 2023
f5e93f5
Added images, updated gitignore to allow uploading them
JayBaileyCS Oct 19, 2023
233d6c1
Added Git LFS to allow for trajectory file
JayBaileyCS Oct 11, 2023
a5beb40
Added smaller trajectory file for acceptance testing
JayBaileyCS Oct 20, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Ignore large folders that are not needed for Docker context. Speeds up Docker build significantly.
dti/
trajectories/
wandb/
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
trajectories/MiniGrid-Dynamic-Obstacles-8x8-v0bd60729d-dc0b-4294-9110-8d5f672aa82c.pkl filter=lfs diff=lfs merge=lfs -text
23 changes: 11 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ on:
branches:
- main
paths-ignore:
- '.devcontainer/**'
- '.github/**'
- '.vscode/**'
- '.gitignore'
- '*.md'
- ".devcontainer/**"
- ".github/**"
- ".vscode/**"
- ".gitignore"
- "*.md"
pull_request:
branches:
- main
paths-ignore:
- '.devcontainer/**'
- '.github/**'
- '.vscode/**'
- '.gitignore'
- '*.md'
- ".devcontainer/**"
- ".github/**"
- ".vscode/**"
- ".gitignore"
- "*.md"
# Allow this workflow to be called from other workflows
workflow_call:
inputs:
Expand All @@ -29,7 +29,6 @@ on:

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -41,7 +40,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,4 @@ trajectories/
./models/
artifacts/

*.png
*.mp4
*.gif
5 changes: 5 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
show_history,
)

from src.streamlit_app.features import show_saved_features


from src.streamlit_app.dynamic_analysis_components import (
show_observation_view,
Expand Down Expand Up @@ -155,6 +157,7 @@
"Parameter Distributions",
"Dimensionality Reduction",
"Composition Scores",
"Features",
],
)
dynamic_analyses = st.multiselect(
Expand Down Expand Up @@ -205,6 +208,8 @@
show_dimensionality_reduction(dt)
if "Composition Scores" in analyses:
show_composition_scores(dt)
if "Features" in analyses:
show_saved_features()

# Dynamic Analyses
if "RTG Scan" in analyses:
Expand Down
Loading