From f0f20832d0b065f11cdbdbf6cbbee696444da8fb Mon Sep 17 00:00:00 2001 From: Haifeng Li Date: Sun, 24 Nov 2024 09:35:52 -0500 Subject: [PATCH] exclude mnist binary files --- shell/build.sbt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shell/build.sbt b/shell/build.sbt index bd87b6d10..c272b1cea 100644 --- a/shell/build.sbt +++ b/shell/build.sbt @@ -30,7 +30,8 @@ Universal / mappings := { !name.startsWith("data/sparse") && !name.startsWith("data/sqlite") && !name.startsWith("data/transaction") && - !name.startsWith("data/wavefront") + !name.startsWith("data/wavefront") && + !name.endsWith("-ubyte") } }