Compare commits

..

1 Commits

Author SHA1 Message Date
c0800ef6fb chore(deps): update dependency scipy to v1.9.0
Some checks reported errors
renovate/artifacts Artifact file update failure
gitea-physics/deepdog/pipeline/pr-master Something is wrong with the build of this commit
2022-07-30 01:31:15 +00:00
3 changed files with 4 additions and 13 deletions

View File

@ -2,13 +2,6 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [0.6.4](https://gitea.deepak.science:2222/physics/deepdog/compare/0.6.3...0.6.4) (2022-08-13)
### Features
* Prints model names while running ([7ea1d71](https://gitea.deepak.science:2222/physics/deepdog/commit/7ea1d715f67e81c9fa841c5a62f1cc700ff7363d))
### [0.6.3](https://gitea.deepak.science:2222/physics/deepdog/compare/0.6.2...0.6.3) (2022-06-12)

View File

@ -140,10 +140,8 @@ class RealSpectrumRun:
results = []
_logger.debug("Going to iterate over models now")
for model_count, (model, model_name) in enumerate(
zip(self.models, self.model_names)
):
_logger.debug(f"Doing model #{model_count}: {model_name}")
for model_count, model in enumerate(self.models):
_logger.debug(f"Doing model #{model_count}")
core_count = multiprocessing.cpu_count() - 1 or 1
with multiprocessing.Pool(core_count) as pool:
cycle_count = 0

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "deepdog"
version = "0.6.4"
version = "0.6.3"
description = ""
authors = ["Deepak Mallubhotla <dmallubhotla+github@gmail.com>"]
@ -8,7 +8,7 @@ authors = ["Deepak Mallubhotla <dmallubhotla+github@gmail.com>"]
python = "^3.8,<3.10"
pdme = "^0.8.6"
numpy = "1.22.3"
scipy = "1.9.1"
scipy = "1.9.0"
[tool.poetry.dev-dependencies]
pytest = ">=6"