BUILD 640 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""A TensorFlow model for generative modeling of light curves."""

package(default_visibility = ["//visibility:public"])

licenses(["notice"])  # Apache 2.0

py_library(
    name = "configurations",
    srcs = ["configurations.py"],
    srcs_version = "PY2AND3",
)

py_library(
    name = "astrowavenet",
    srcs = [
        "astrowavenet.py",
    ],
    srcs_version = "PY2AND3",
)

py_test(
    name = "astrowavenet_test",
    size = "small",
    srcs = [
        "astrowavenet_test.py",
    ],
    srcs_version = "PY2AND3",
    deps = [
        ":astrowavenet",
        ":configurations",
        "//astronet/util:configdict",
    ],
)