MLOps with TFX pipelines - Tensorflow Extended

Поділитися
Вставка
  • Опубліковано 12 січ 2025

КОМЕНТАРІ • 27

  • @AIEngineeringLife
    @AIEngineeringLife  3 роки тому +6

    Link to colab notebook used in session is here - colab.research.google.com/gist/rafiqhasan/2164304ede002f4a8bfe56e5434e1a34/dl-e2e-taxi-dataset-tfx-e2e.ipynb

  • @philipp4361
    @philipp4361 3 роки тому +1

    Amazing content, made it way more clear to me. Big thanks from germany!

  • @sonsjacob495
    @sonsjacob495 3 роки тому +2

    Thank you so much for providing such quality content. I followed the notebook along with the video myself and was able to create the model using the full pipeline. Looking forward to trying to deploy my own model using this tutorial as well as watching the other tutorials on Spark!

  • @jeromeeusebius
    @jeromeeusebius 2 роки тому +1

    The reason to split the data is to avoid any form of leakage in the test data set. Basically, whatever the transformation that is made to the training data, e.g., normalization, that extracts statistics of mean and standard deviation. That is derived only using the training data set. So yes, we generally want to split the dataset into training and test set from the start. The latter is then used to evaluate the generalization error of the trained model

  • @moekhan5158
    @moekhan5158 3 роки тому

    Thank you for arranging this wonderful webinar. Good content and great presentation. Keep up the good work.

  • @sarthak7413
    @sarthak7413 2 роки тому

    Excellent!😀

  • @AIEngineeringLife
    @AIEngineeringLife  3 роки тому +2

    Link to previous video on Tensorflow Deep Dive - ua-cam.com/video/wPri78CFSEw/v-deo.html

  • @raminbakhtiyari5429
    @raminbakhtiyari5429 3 роки тому

    thank you very much for such good material.
    can I find more tutorials about TFX made by you guys or can you introduce me to other useful materials like this video?

  • @rensraks2007
    @rensraks2007 3 роки тому +1

    At 1:15:05 you said you will share the link of previous video. Don’t see that in the description section

    • @AIEngineeringLife
      @AIEngineeringLife  3 роки тому

      Sorry here you go - ua-cam.com/video/wPri78CFSEw/v-deo.html

    • @rensraks2007
      @rensraks2007 3 роки тому

      @@AIEngineeringLife thank you so much.

  • @adityasoni1639
    @adityasoni1639 Рік тому

    You have not used the transform function right .?

  • @mananshah7095
    @mananshah7095 3 роки тому +1

    Hi, I missed the session. Can you please link the colab notebook?

    • @AIEngineeringLife
      @AIEngineeringLife  3 роки тому +1

      Added colab link to comment above

    • @mananshah7095
      @mananshah7095 3 роки тому

      Thank you so much team!
      Really great sessions and I hope you continue these sessions and also please could you upload the NLP and time series playlist as and when you get the time! 😃

    • @AIEngineeringLife
      @AIEngineeringLife  3 роки тому

      @@mananshah7095 NLP and TS is already out there. Are you looking for anything in specific ?

    • @mananshah7095
      @mananshah7095 3 роки тому

      @@AIEngineeringLife in NLP I actually wanted a theory lecture/video on the architecture of BERT and its variations Roberta Alberta if that would be a possibility. I tried to refer a couple of other resources but ultimately your explanation is something I fully understand.

  • @adityasoni1639
    @adityasoni1639 Рік тому

    Am unable to install even the library in colab 😅

  • @ig2947
    @ig2947 3 роки тому

    What is the difference between TFX and Kubeflow ?

  • @RenjuZachariah
    @RenjuZachariah Рік тому

    how to install tfx in mac pro m1?

  • @ramakanthrama8578
    @ramakanthrama8578 3 роки тому

    Hi, Can you please do a ML Ops with GCP ? Similar to ML Ops with Azure.

    • @AIEngineeringLife
      @AIEngineeringLife  3 роки тому +2

      I have separate GCP videos where I cover MLOps and as well in my MLops playlist in my channel

  • @mohdshoaib3296
    @mohdshoaib3296 3 роки тому +1

    colab link pls

  • @deepakts8941
    @deepakts8941 2 роки тому +1

    Install this version.
    #!pip install -U tensorflow==2.4.0 pyarrow==2.0.0 tfx==0.28.0

  • @abhishekbourai1832
    @abhishekbourai1832 3 роки тому +2

    Thank you for such awesome resource, sir.
    I am getting errors importing the below components:
    from tfx.components import ResolverNode
    from tfx.utils.dsl_utils import external_input
    ImportError: cannot import name 'ResolverNode' from 'tfx.components' (/usr/local/lib/python3.7/dist-packages/tfx/components/__init__.py)
    Please help.

    • @moekhan5158
      @moekhan5158 3 роки тому +1

      try this
      example_gen = CsvExampleGen(input_base=_data_root)
      it worked in my case