GokuMohandas / Made-With-ML

Learn how to design, develop, deploy and iterate on production-grade ML applications.
https://madewithml.com
MIT License
37.64k stars 5.97k forks source link

issue in data engineering lesson #240

Open akashsonowal opened 1 year ago

akashsonowal commented 1 year ago

Hi @GokuMohandas,

I was trying to run the data engineering lessons in my local.

The tags dataset don't have id column so inside dbt cloud development when we run this sql code, it throws an error as tags doesn't have id. Please correct me if am missing something.

-- models/labeled_projects/labeled_projects.sql SELECT p.id, created_on, title, description, tag FROMmade-with-ml-XXXXXX.mlops_course.projectsp -- REPLACE LEFT JOINmade-with-ml-XXXXXX.mlops_course.tagst -- REPLACE ON p.id = t.id

teddythinh commented 11 months ago

I get the same error too, I don't know if the query p.id = t.id is true or not.

Shyam4801 commented 4 months ago

Looks like there is no id column in datasets/tags.csv. Hence the error