Spaces:
Running
Running
Upload models.BUILD
Browse files- models.BUILD +18 -0
models.BUILD
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
package(default_visibility = ["//visibility:public"])
|
| 2 |
+
|
| 3 |
+
licenses(["notice"]) # Apache 2.0
|
| 4 |
+
|
| 5 |
+
filegroup(
|
| 6 |
+
name = "model_files",
|
| 7 |
+
srcs = glob(
|
| 8 |
+
[
|
| 9 |
+
"**/*",
|
| 10 |
+
],
|
| 11 |
+
exclude = [
|
| 12 |
+
"**/BUILD",
|
| 13 |
+
"**/WORKSPACE",
|
| 14 |
+
"**/LICENSE",
|
| 15 |
+
"**/*.zip",
|
| 16 |
+
],
|
| 17 |
+
),
|
| 18 |
+
)
|