Skip to content

Commit

Permalink
Merge branch 'master' into examples-rework
Browse files Browse the repository at this point in the history
  • Loading branch information
jrzkaminski authored Sep 23, 2023
2 parents d8384ff + 390e2da commit 4059e66
Show file tree
Hide file tree
Showing 19 changed files with 393 additions and 306 deletions.
1 change: 0 additions & 1 deletion bamt/builders/evo_builder.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from datetime import timedelta
from typing import Dict, Optional, List, Tuple


from golem.core.adapter import DirectAdapter
from golem.core.dag.verification_rules import has_no_cycle, has_no_self_cycled_nodes
from golem.core.log import Log
Expand Down
3 changes: 0 additions & 3 deletions bamt/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
config.read(CONFIGFILE)
else:
open(CONFIGFILE, "a").close()
config["NODES"] = {
"models_storage": path.join(path.expanduser("~"), "BAMT", "Nodes_data")
}
config["LOG"] = {
"log_conf_loc": path.join(path.dirname(path.abspath(__file__)), "logging.conf")
}
Expand Down
13 changes: 6 additions & 7 deletions bamt/networks/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
__all__ = [
"base",
"hybrid_bn",
"continuous_bn",
"discrete_bn",
"big_brave_bn",
]
from bamt.networks.base import BaseNetwork
from bamt.networks.big_brave_bn import BigBraveBN
from bamt.networks.composite_bn import CompositeBN
from bamt.networks.continuous_bn import ContinuousBN
from bamt.networks.discrete_bn import DiscreteBN
from bamt.networks.hybrid_bn import HybridBN
Loading

0 comments on commit 4059e66

Please sign in to comment.