From 16cb868911eecba323759e2e129df8833361e614 Mon Sep 17 00:00:00 2001 From: Steve Mandala Date: Wed, 30 Sep 2020 16:48:25 -0700 Subject: [PATCH] Add init to dir Summary: In https://github.com/facebook/Ax/issues/387, users are having issue importing from the botorch_modular module. Maybe it's because of the missing __init__.py. But I have no clue how this works **without** it . . . Reviewed By: lena-kashtelyan Differential Revision: D24031280 fbshipit-source-id: 3cbfebf3f756927a78979941676d8c2aa34ac2f7 --- ax/models/torch/botorch_modular/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 ax/models/torch/botorch_modular/__init__.py diff --git a/ax/models/torch/botorch_modular/__init__.py b/ax/models/torch/botorch_modular/__init__.py new file mode 100644 index 00000000000..734a1eb4e2d --- /dev/null +++ b/ax/models/torch/botorch_modular/__init__.py @@ -0,0 +1,5 @@ +#!/usr/bin/env python3 +# Copyright (c) Facebook, Inc. and its affiliates. +# +# This source code is licensed under the MIT license found in the +# LICENSE file in the root directory of this source tree.