-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
116 changed files
with
2,622 additions
and
869 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
* {{ cookiecutter.project_name }} version: | ||
* Python version: | ||
* Operating System: | ||
|
||
### Bug or feature? | ||
|
||
Are you reporting a bug or adding a new feature? Perhaps you want more documentation? | ||
Please tell us here and tag the issue appropriately. | ||
|
||
### Description | ||
|
||
Describe the bug you want fixed, the feature you want to see, etc. | ||
If you are requesting a new feature, please say why you think that feature is important and belongs in this library, and any guesses on how to implement it. | ||
|
||
### What I Did/What I Would Like to Do | ||
|
||
For a bug: | ||
``` | ||
Paste the command(s) you ran and the output. | ||
If there was a crash, please include the traceback here. | ||
``` | ||
|
||
For a feature: | ||
``` | ||
Provide sample code that you would hope to run and what it would output. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,5 @@ __pycache__ | |
# vscode stuff | ||
.vscode | ||
.mypy_cache | ||
daisy_logs/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,24 @@ | ||
""" | ||
dacapo module | ||
============== | ||
This module contains several useful methods for performing common tasks in dacapo library. | ||
Modules: | ||
----------- | ||
Options - Deals with configuring aspects of the program's operations. | ||
experiments - This module is responsible for conducting experiments. | ||
apply - Applies the results of the training process to the given dataset. | ||
train - Trains the model using given data set. | ||
validate - This module is for validating the model. | ||
predict - This module is used to generate predictions based on the model. | ||
""" | ||
|
||
from .options import Options # noqa | ||
from . import experiments # noqa | ||
from .apply import apply # noqa | ||
from .train import train # noqa | ||
from .validate import validate # noqa | ||
from .predict import predict # noqa | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
from .blockwise_task import DaCapoBlockwiseTask | ||
from .scheduler import run_blockwise | ||
from .scheduler import run_blockwise, segment_blockwise |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.