Skip to content

Instantly share code, notes, and snippets.

@eileen-code4fun
Created June 4, 2021 02:34
Show Gist options
  • Save eileen-code4fun/d3bd32f9c404933f925654641254dd1f to your computer and use it in GitHub Desktop.
Save eileen-code4fun/d3bd32f9c404933f925654641254dd1f to your computer and use it in GitHub Desktop.
CIFAR10 BQ TEST
SELECT
# Display all metrics.
*
FROM
ML.EVALUATE(
MODEL `bqml.e2e-tutorial`,
(
SELECT
int64_field_0 as label,
* EXCEPT (int64_field_0)
FROM
# Use the test table.
`bqml.test`
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment