Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Users/jeff #8

Open
wants to merge 32 commits into
base: users/abshetty
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
7abb47d
added video transformation
bsukboontip Nov 2, 2022
aef78a7
added video transformer to requirements.txt
bsukboontip Nov 2, 2022
3280d8a
more updates to requirements
bsukboontip Nov 2, 2022
93c7090
committing working data augmentation code that works with intent
Nov 4, 2022
0ae418c
Changes for PredRNN
Sep 24, 2022
68750b4
PredRNN v2
Sep 25, 2022
d0743f3
models halfway
jeffery1236 Oct 2, 2022
88079d2
Added Explainer notebook
jeffery1236 Apr 6, 2022
9a19a0a
Added Explainer
jeffery1236 Apr 6, 2022
26df85b
Fixed path-related bugs in Explainer notebook
jeffery1236 Apr 12, 2022
25ee99e
implemented predrnn
jeffery1236 Oct 2, 2022
56550e3
fixed bugs + added decouple_beta in trainer
jeffery1236 Oct 4, 2022
3fd9495
merge conflicts
jeffery1236 Oct 20, 2022
329bcb2
added config.yaml
jeffery1236 Oct 4, 2022
c415400
merge conflicts ipynb
jeffery1236 Oct 5, 2022
cbf6860
merge conflicts
jeffery1236 Oct 20, 2022
15a15e1
PredRNN running with Wandb setup -> logging precision/recall/f1
jeffery1236 Nov 3, 2022
cf493e8
reduce on plateu scheduler
jeffery1236 Nov 6, 2022
1919bc5
temp save
bsukboontip Nov 8, 2022
fdb21e9
fixed dimension bug and added video saving
bsukboontip Nov 9, 2022
bc00843
more code saved
Nov 9, 2022
c3d24dd
added wandb stuff to config
Nov 10, 2022
599e262
save current version
Nov 10, 2022
573a5af
fixed training bug
Nov 10, 2022
f4c3c22
merged with master stuff
bsukboontip Nov 10, 2022
73c3a78
testing mode
jeffery1236 Nov 10, 2022
bae294a
merge changes
jeffery1236 Nov 10, 2022
a26e405
merged wandb from main
Nov 14, 2022
4d37064
updated version with focal loss and dropout
jeffery1236 Nov 18, 2022
ec755d4
bugix tester
Nov 20, 2022
3b838d2
merge
jeffery1236 Nov 30, 2022
ae48bce
integrated with data aug
jeffery1236 Dec 3, 2022
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
283 changes: 0 additions & 283 deletions Untitled.ipynb

This file was deleted.

47 changes: 31 additions & 16 deletions config.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
global:
global:
root_dir: ""
iteration: "intent_indoor_baseline_2"
description: "intent_indoor_baseline full run changed run params"
enable_preprocessing: False
iteration: "intent_Predrnn_focal_dropout"
enable_preprocessing: false
seed: 8
enable_intent: True
enable_wandb: True
enable_intent: true
enable_wandb: true
description: "predrnn-focal-dropout0.2 multiply-0.8-1.2 translate-5"
transformer:
fps: 2
path: "data/"
data_save_file: "data/train" #file path without .npz
enable_benchmark_test: False
test_path: "data/"
test_save_file: "data/train" #file path without .npz
path: "data/Indoor - Seattle Library"
data_save_file: "/content/data/Indoor - train" #file path without .npz
enable_benchmark_test: true
test_path: "data/test/Mixed"
test_save_file: "/content/data/Indoor - test" #file path without .npz
data:
HEIGHT: 64
WIDTH: 64
Expand All @@ -21,15 +21,30 @@ data:
VAL_INTENT: ""
BENCHMARK_TEST_INTENT: ""
trainer:
BATCH: 64
lr: 0.0001
patch_size: 4
img_channel: 1
img_width: 128
filter_size: 5
stride: 1
layer_norm: 0
visual: 0
BATCH: 8
max_lr: 0.01
lr: 0.00002
epochs: 25
lambda: 0.01 #L2 regularization #changed from 1e-4
lambda: 0.001 #L2 regularization #changed from 1e-4
num_classes: 3
wandb: true
model_save_path: "models/"
model:
name: "ConvLSTM"
convlstm_hidden: "256"
name: "PredRNN"
focal_loss_gamma: 1
convlstm_hidden: 128
num_conv_lstm_layers: 1
conv_dropout: 0
decouple_beta: 0.1
pretrained_path: ""
optimizer_path: ""
scheduler_path: ""
lr_after_load: ""

Loading