-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'new-api' into hopper-change
- Loading branch information
Showing
2 changed files
with
46 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,44 @@ | ||
from .hopper_controller_oracle import HopperControllerOracle | ||
from .ant_morphology_oracle import AntMorphologyOracle | ||
from .dkitty_morphology_oracle import DKittyMorphologyOracle | ||
from .toy_continuous_oracle import ToyContinuousOracle | ||
from .nas_bench_oracle import NASBenchOracle | ||
from .tf_bind_8_oracle import TFBind8Oracle | ||
from .tf_bind_10_oracle import TFBind10Oracle | ||
from .toy_discrete_oracle import ToyDiscreteOracle | ||
try: | ||
from .ant_morphology_oracle import AntMorphologyOracle | ||
except ImportError as e: | ||
print("Skipping AntMorphologyOracle import:", e) | ||
|
||
try: | ||
from .cifar_nas_oracle import CIFARNASOracle | ||
except ImportError as e: | ||
print("Skipping CIFARNASOracle import:", e) | ||
|
||
try: | ||
from .dkitty_morphology_oracle import DKittyMorphologyOracle | ||
except ImportError as e: | ||
print("Skipping DKittyMorphologyOracle import:", e) | ||
|
||
try: | ||
from .hopper_controller_oracle import HopperControllerOracle | ||
except ImportError as e: | ||
print("Skipping HopperControllerOracle import:", e) | ||
|
||
try: | ||
from .nas_bench_oracle import NASBenchOracle | ||
except ImportError as e: | ||
print("Skipping NASBenchOracle import:", e) | ||
|
||
try: | ||
from .tf_bind_8_oracle import TFBind8Oracle | ||
except ImportError as e: | ||
print("Skipping TFBind8Oracle import:", e) | ||
|
||
try: | ||
from .tf_bind_10_oracle import TFBind10Oracle | ||
except ImportError as e: | ||
print("Skipping TFBind10Oracle import:", e) | ||
|
||
try: | ||
from .toy_continuous_oracle import ToyContinuousOracle | ||
except ImportError as e: | ||
print("Skipping ToyContinuousOracle import:", e) | ||
|
||
try: | ||
from .toy_discrete_oracle import ToyDiscreteOracle | ||
except ImportError as e: | ||
print("Skipping ToyDiscreteOracle import:", e) |