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

Multisession modeling functionality for AutoLFADS #152

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
fb2e64b
attempt 1 at full changes for msm
claytonwashington Aug 25, 2023
fe77fab
stash for testing
claytonwashington Aug 29, 2023
2e50d16
post-testing changes
claytonwashington Sep 1, 2023
f92f4ff
test
claytonwashington Sep 5, 2023
7415356
fix
claytonwashington Sep 5, 2023
f185ba7
automatic commit to document pipeline stack_config_template.json befo…
claytonwashington Oct 3, 2023
0cb782e
automatic commit to document pipeline stack_config_template.json afte…
claytonwashington Oct 3, 2023
4ea3dec
automatic commit to document pipeline stack_config_template.json afte…
claytonwashington Oct 4, 2023
7700632
automatic commit to document pipeline stack_config_template.json afte…
claytonwashington Oct 9, 2023
6f3c55d
automatic commit to document pipeline stack_config_template.json afte…
claytonwashington Oct 9, 2023
33edce2
automatic commit to document pipeline stack_config_template.json afte…
claytonwashington Oct 10, 2023
b031c66
no multisession field in config defaults to false
claytonwashington Oct 31, 2023
025c8f8
automatic commit to document pipeline stack_config_template.json afte…
claytonwashington Oct 31, 2023
39badb9
automatic commit to document pipeline stack_config_template.json afte…
claytonwashington Nov 10, 2023
6400428
automatic commit to document pipeline stack_config_template.json afte…
claytonwashington Nov 16, 2023
1540f23
automatic commit to document pipeline stack_config_template.json afte…
claytonwashington Nov 16, 2023
3207d97
drive run_main.py with run_main.sh
claytonwashington Nov 28, 2023
51303b6
automatic commit to document pipeline stack_config_template.json afte…
claytonwashington Nov 28, 2023
a02e41d
automatic commit to document pipeline stack_config_template.json afte…
claytonwashington Dec 2, 2023
1b2d533
automatic commit to document pipeline stack_config_template.json afte…
claytonwashington Dec 6, 2023
66762a6
fix self.data_name_list in submission object for multisession submitt…
claytonwashington Dec 7, 2023
4d3fb92
incorporated Taiga's suggestions to code enabling multisession via we…
claytonwashington Dec 12, 2023
e40d9fb
debug logs for multisession logic
claytonwashington Dec 15, 2023
dd0885d
debug messages in handler
claytonwashington Dec 15, 2023
beac528
moved debug print statement in multi handler
claytonwashington Dec 15, 2023
8808003
changed True to boolean
claytonwashington Dec 15, 2023
f6842d8
changed True to boolean again
claytonwashington Dec 15, 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: 1 addition & 0 deletions .neurocaas_contrib_dataconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"configpath": "s3://bucketname/groupname/configs/config.json", "datapath": "s3://bucketname/groupname/inputs/data.txt"}
Binary file modified experiments/__pycache__/calculate_cost.cpython-36.pyc
Binary file not shown.
Binary file modified ncap_iac/ncap_blueprints/__pycache__/__init__.cpython-36.pyc
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"STAGE": "websubstack",
"Lambda": {
"CodeUri": "../../protocols",
"Handler": "submit_start.handler_develop",
"Handler": "submit_start.handler_multisession",
"Launch": true,
"LambdaConfig": {
"AMI": "ami-08f59b6fdb19d0344",
"AMI": "ami-0cebcfea203997fcf",
"INSTANCE_TYPE": "p2.8xlarge",
"REGION": "us-east-1",
"IAM_ROLE": "SSMRole",
Expand Down
Empty file modified ncap_iac/ncap_blueprints/utils_stack/print_privatekey.sh
100644 → 100755
Empty file.
Binary file modified ncap_iac/protocols/__pycache__/__init__.cpython-36.pyc
Binary file not shown.
Binary file modified ncap_iac/protocols/__pycache__/log.cpython-36.pyc
Binary file not shown.
Binary file modified ncap_iac/protocols/__pycache__/postprocess.cpython-36.pyc
Binary file not shown.
Binary file modified ncap_iac/protocols/__pycache__/submit_start.cpython-36.pyc
Binary file not shown.
434 changes: 431 additions & 3 deletions ncap_iac/protocols/submit_start.py
cellistigs marked this conversation as resolved.
Show resolved Hide resolved

Large diffs are not rendered by default.

392 changes: 386 additions & 6 deletions tests/protocol_tests/test_submit_start.py

Large diffs are not rendered by default.

Loading