-
Notifications
You must be signed in to change notification settings - Fork 0
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
workflow settings should be cleaner #30
Comments
Ashley and I were thinking about essentially deleting We do see that for some steps 'basedir' (in the workflow_dict) is set to args.basedir, while others set it to args.dir, and we also see that 'dir' (in the workflow_dict) is sometimes set to args.dir or args.process. This is related to issue #15, but looking forward not having the workflow_dict should not be a problem in sorting out directories, right? What do you think? |
Interesting! Could this handle the cases where the same process is run
twice with different settings or inputs, ala pca or regression?
I think the dir naming issues should be handled when we change to a
consistent api for all workflow elements as we discussed today
…--
Russell A. Poldrack
Albert Ray Lang Professor of Psychology
Associate Director, Stanford Data Science
Director, SDS Center for Open and Reproducible Science
Building 420
Stanford University
Stanford, CA 94305
***@***.*** ***@***.***>
http://www.poldracklab.org/
|
I think so! Using PCA as an example, the settings.json would list the PCA dict twice, but each dict would have different values to run the two different PCA styles. For example the first dict could be |
but wouldn't that require the same key to show up multiple times in the
dict (which isn't possible)?
…On Mon, Jun 13, 2022 at 3:47 PM Luke Brezovec ***@***.***> wrote:
I think so! Using PCA as an example, the settings.json would list the PCA
dict twice, but each dict would have different values to run the two
different PCA styles. For example the first dict could be
"PCA": { "script": "dimensionality_reduction.py", "time_hours": 8,
"label": 'resid'}, the second dict could replace the label and whatever
other key/values should be different.
—
Reply to this email directly, view it on GitHub
<#30 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAGUVEGF73MONDPG7KCIBMLVO6273ANCNFSM5YOTQFHA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
--
Russell A. Poldrack
Albert Ray Lang Professor of Psychology
Associate Director, Stanford Data Science
Director, SDS Center for Open and Reproducible Science
Building 420
Stanford University
Stanford, CA 94305
***@***.*** ***@***.***>
http://www.poldracklab.org/
|
currently the workflow settings repeat the same operations many times. in addition, there are some settings like basedir that one might want to set in a settings file. come up with a cleaner way to integrate stored settings with args settings
The text was updated successfully, but these errors were encountered: