You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Set up the substitution preprocessing injection
if bigquery.magics._run_query.func_name != 'format_and_run_query':
original_run_query = bigquery.magics._run_query
needs to be modified in 2 ways:
bigquery.magics._run_query --> bigquery.magics.magics._run_query
In py3 (which I'm assuming everyone is using now), func_name --> __name__
The text was updated successfully, but these errors were encountered:
In this notebook: https://github.com/GoogleCloudPlatform/healthcare/blob/master/datathon/mimic_eicu/tutorials/BigQuery_ML.ipynb
I believe that this snippet:
needs to be modified in 2 ways:
bigquery.magics._run_query
-->bigquery.magics.magics._run_query
In py3 (which I'm assuming everyone is using now),
func_name
-->__name__
The text was updated successfully, but these errors were encountered: