Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion run_python_examples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ function super_resolution() {
python main.py --upscale_factor 3 --batchSize 4 --testBatchSize 100 --nEpochs 1 --lr 0.001 || error "super resolution failed"
}

function time_sequence_prediciton() {
function time_sequence_prediction() {
start
python generate_sine_wave.py || { error "generate sine wave failed"; return; }
python train.py || error "time sequence prediction training failed"
Expand Down
2 changes: 2 additions & 0 deletions time_sequence_prediction/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
torch
matplotlib