Closed stevewalker-de closed 1 year ago
NameError Traceback (most recent call last)
/tmp/ipykernel_22050/3421282980.py in
NameError: name 'TIMESTAMP' is not defined
Hi @stevewalker-de , Sorry about this. I have been updating the repository layout and uniformity across notebooks. The last 2 sections on my list for updates are AutoML (02) and This folder (Applied Forecasting). I am working on Applied Forecasting this week so it will be fixed shortly. Sorry for the inconvenience. A quick fix for the TIMESTAMP is adding a cell with this above its use:
from datetime import datetime
TIMESTAMP = datetime.now().strftime("%Y%m%d%H%M%S")
No worries at all, worked through it fine, was just letting you know. Cheers!
On Tue, Oct 25, 2022 at 6:03 AM Mike Henderson @.***> wrote:
Hi @stevewalker-de https://github.com/stevewalker-de , Sorry about this. I have been updating the repository layout and uniformity across notebooks. The last 2 sections on my list for updates are AutoML (02) and This folder (Applied Forecasting). I am working on Applied Forecasting this week so it will be fixed shortly. Sorry for the inconvenience. A quick fix for the TIMESTAMP is adding a cell with this above its use:
from datetime import datetime TIMESTAMP = datetime.now().strftime("%Y%m%d%H%M%S")
— Reply to this email directly, view it on GitHub https://github.com/statmike/vertex-ai-mlops/issues/16#issuecomment-1290299898, or unsubscribe https://github.com/notifications/unsubscribe-auth/AQF3N77CLWAEA2CVAJGCPATWE6WAZANCNFSM6AAAAAARNH5POQ . You are receiving this because you were mentioned.Message ID: @.***>
--
Steve Walker
@.***
Developer Advocacy, Data Analytics, Google Cloud
Marking this one as complete as the Applied Forecasting series just got a big update pass that included fixing this, many other items, and adding many new features and methods.
Cell 6, 'Create Dataset (Link to BigQuery Table)' requires notebook 1 'prepped' table to be created. I had to figure that out and go find it, and execute it. Didn't know if that was your intent. -steve