Compare commits

..

3 Commits
0.1.3 ... 0.1.4

Author SHA1 Message Date
d4f6e2f99e Created version 0.1.4
All checks were successful
gitea-physics/deepdog/pipeline/head This commit looks good
gitea-physics/deepdog/pipeline/tag This commit looks good
2022-01-24 11:13:29 -06:00
d64939f346 Don't break the build
All checks were successful
gitea-physics/deepdog/pipeline/head This commit looks good
2022-01-24 11:13:24 -06:00
0c6490dad7 Small fix t ocsv headers and also adds init for better imports
Some checks reported errors
gitea-physics/deepdog/pipeline/head Something is wrong with the build of this commit
2022-01-24 11:12:54 -06:00
3 changed files with 4 additions and 3 deletions

View File

@@ -1,13 +1,14 @@
import logging
from deepdog.meta import __version__
from deepdog.bayes_run import BayesRun
from deepdog.diagnostic import Diagnostic
def get_version():
return __version__
__all__ = ["get_version", "BayesRun"]
__all__ = ["get_version", "BayesRun", "Diagnostic"]
logging.getLogger(__name__).addHandler(logging.NullHandler())

View File

@@ -69,7 +69,7 @@ class Diagnostic():
row = {
"model": name,
"index": idx,
"bounds_px": bounds,
"bounds": bounds,
"actual_dipole_moment": self.dipoles.dipoles[0].p,
"actual_dipole_position": self.dipoles.dipoles[0].s,
"actual_dipole_freq": self.dipoles.dipoles[0].w,

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "deepdog"
version = "0.1.3"
version = "0.1.4"
description = ""
authors = ["Deepak Mallubhotla <dmallubhotla+github@gmail.com>"]