-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #993 from rhayes777/feature/visualiser
feature/visualiser
- Loading branch information
Showing
4 changed files
with
83 additions
and
35 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
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
from autofit.non_linear.paths.abstract import AbstractPaths | ||
from autofit.mapper.prior_model.abstract import AbstractPriorModel | ||
|
||
|
||
class Visualizer: | ||
""" | ||
Methods associated with visualising analysis, model and data before, during | ||
or after an optimisation. | ||
""" | ||
|
||
@staticmethod | ||
def visualize_before_fit( | ||
analysis, | ||
paths: AbstractPaths, | ||
model: AbstractPriorModel, | ||
): | ||
pass | ||
|
||
@staticmethod | ||
def visualize( | ||
analysis, | ||
paths: AbstractPaths, | ||
instance, | ||
during_analysis, | ||
): | ||
pass | ||
|
||
@staticmethod | ||
def visualize_before_fit_combined( | ||
analysis, | ||
analyses, | ||
paths: AbstractPaths, | ||
model: AbstractPriorModel, | ||
): | ||
pass | ||
|
||
@staticmethod | ||
def visualize_combined( | ||
analysis, | ||
analyses, | ||
paths: AbstractPaths, | ||
instance, | ||
during_analysis, | ||
): | ||
pass |
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