Skip to content

Instantly share code, notes, and snippets.

@SputnikTea
SputnikTea / deploy_function.sh
Last active January 27, 2022 12:05
Drop BigQuery ML slots at midnight
#!/bin/bash
# Needs google cloud SDK installed and initated
# Deploy before scheduler
FUNC_NAME="delete_bqml_pipe_slots"
PROJECT_ID="my-project"
REGION="europe-west1"
# Service Account with bigquery.resourceAdmin role
SA_ID="bqml-pipe-slot-admin"
@SputnikTea
SputnikTea / map@k.sql
Last active January 27, 2022 12:05
Calculate mAP@k and mP@k in SQL
/*
is_relevant_col is
- '0' for irrelevant recommendations (negatives)
- '1' for relevant recommendations (positives)
*/
WITH t1 AS ( -- Precition@k per row
SELECT *,
avg(is_relevant_col)
OVER(