2025-06-19 09:30:29 +00:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
|
|
|
|
|
|
def repo():
|
|
|
|
|
http_archive(
|
|
|
|
|
name = "mnist",
|
2025-07-24 17:19:43 +00:00
|
|
|
sha256 = "9c7d9a5ef9c245084996f6d2ec66ef176e51186e6a5b22efdcc3828d644941ca",
|
|
|
|
|
url = "https://mirror.zml.ai/data/mnist_safetensors.tar.zst",
|
2025-06-19 09:30:29 +00:00
|
|
|
build_file_content = """exports_files(glob(["**"]), visibility = ["//visibility:public"])""",
|
|
|
|
|
)
|