-
Notifications
You must be signed in to change notification settings - Fork 2
/
WORKSPACE
65 lines (56 loc) · 2.17 KB
/
WORKSPACE
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
workspace(name = "hawk_eye")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_python",
url = "https://github.com/bazelbuild/rules_python/releases/download/0.1.0/rules_python-0.1.0.tar.gz",
sha256 = "b6d46438523a3ec0f3cead544190ee13223a52f6a6765a29eae7b7cc24cc83a0",
)
http_archive(
name = "bazel_skylib",
sha256 = "97e70364e9249702246c0e9444bccdc4b847bed1eb03c5a3ece4f83dfe6abc44",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz",
],
)
http_archive(
name = "bazel_toolchains",
sha256 = "7ebb200ed3ca3d1f7505659c7dfed01c4b5cb04c3a6f34140726fe22f5d35e86",
strip_prefix = "bazel-toolchains-3.4.1",
urls = [
"https://github.com/bazelbuild/bazel-toolchains/releases/download/3.4.1/bazel-toolchains-3.4.1.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/releases/download/3.4.1/bazel-toolchains-3.4.1.tar.gz",
],
)
load("//third_party:gcs.bzl", "gcs_file")
gcs_file(
name = "base_shapes",
bucket = "gs://uav_austin",
downloaded_file_path = "base_shapes_test_20210117.tar.gz",
file = "test-deps/base_shapes_test_20210117.tar.gz",
sha256 = "79b5a45a6a9855baa7d292890b3b0f512371b9b5df5919581b1b2e28bed53c48",
)
gcs_file(
name = "backgrounds",
bucket = "gs://uav_austin",
downloaded_file_path = "backgrounds_test_2021017.tar.gz",
file = "test-deps/backgrounds_test_2021017.tar.gz",
sha256 = "d2118465bc6093ec066506ddf9b286ddacb2a26d67eb7b3a15e39ba242002a80",
)
gcs_file(
name = "fonts",
bucket = "gs://uav_austin",
downloaded_file_path = "fonts_test_20210117.tar.gz",
file = "test-deps/fonts_test_20210117.tar.gz",
sha256 = "7c4d5561eac233d95c0f26665c9f29cf810e4637fdabd79a531ce1eb95210c58",
strip_prefix = "fonts_test",
)
load("//hawk_eye/core:models.bzl", "production_model")
production_model(
name = "classification_model",
type = "classifier",
)
production_model(
name = "detection_model",
type = "detector",
)