End To End MLOPS Data Science Project Implementation With Deployment

แชร์
ฝัง
  • เผยแพร่เมื่อ 15 พ.ย. 2024

ความคิดเห็น • 116

  • @gichurumuthomi8578
    @gichurumuthomi8578 ปีที่แล้ว +80

    I love you man,, your end to end projects, has given me a job,, all the way from Kenya

    • @heerthirajah1661
      @heerthirajah1661 ปีที่แล้ว

      Awesome. How gichu. Can we connect over LinkedIn and talk more about.

  • @aishwaryapattnaik3082
    @aishwaryapattnaik3082 ปีที่แล้ว +11

    This guy explanation is also good but we love when you make videos Krish Sir 🙌🏼

  • @DeeptiShukla-gb8hs
    @DeeptiShukla-gb8hs หลายเดือนก่อน

    ThankYouSoMuch For Your Hardwork,
    I restart my carrier 14 years back,its really really help to me.
    Thanks alot

  • @KiranRoy-h5l
    @KiranRoy-h5l ปีที่แล้ว +6

    The lecture is informative. But few suggestions
    1. please do mention that no one uses such ( 01_ data_ingestion...) file names in live projects.
    2. The structure/template is too complex... it can be simplified.
    3. Use callable & typing to simplify flow and avoid creating objects for everything.

    • @abdulalimbaig3286
      @abdulalimbaig3286 7 หลายเดือนก่อน

      Yes we normally use prepare, train and predict inside the src folder which encompasses everything

  • @bhaskar143l
    @bhaskar143l ปีที่แล้ว +4

    You are machine to make videos on data science sir ji.. Lots of love and respect on you. Thank you is very small word to describe your dedication to teach us.

  • @antishwow
    @antishwow 5 หลายเดือนก่อน

    Excellent!
    My comment is:
    Your updated requirements.txt file is well-suited for an MLOps project. It includes essential libraries for data manipulation, machine learning, visualization, web service creation, and more. BUT, by pinning versions and using a virtual environment, you ensure a reproducible and isolated environment for your project.

  • @MdShihabUddin-e6x
    @MdShihabUddin-e6x 9 หลายเดือนก่อน

    Krish, you are doing a great job. I have been following you since I started my journey in 2019.Thanks for such amazing contents.

  • @sahilgoregaonkar570
    @sahilgoregaonkar570 4 หลายเดือนก่อน

    Superb , I was actually struggling before in understanding the workflow , This was very helpful.

  • @matheusgoes640
    @matheusgoes640 ปีที่แล้ว +2

    Thank you so much, Krish! Looking forward to the next End to End project!

  • @Susovan-vj3wd
    @Susovan-vj3wd 6 หลายเดือนก่อน

    One of the best End to End ML explaining

  • @saisubhasishrout7742
    @saisubhasishrout7742 ปีที่แล้ว +2

    Thank you Sir for this video. It is really helpful for me.

  • @pramodpatil1609
    @pramodpatil1609 ปีที่แล้ว +4

    Love the way bappy do the projects ❤❤🎉

  • @ND-hr9mb
    @ND-hr9mb ปีที่แล้ว +2

    Thanks for the amazng video and clear explanation!

  • @CJ7MO
    @CJ7MO 6 หลายเดือนก่อน

    Thank you so much! I enjoyed the project end to end, thanks for the video, you are the better!

  • @KRIPAMISHRA-rz7hg
    @KRIPAMISHRA-rz7hg ปีที่แล้ว

    a salute to the lecturer 🙌

  • @kakamoora7874
    @kakamoora7874 9 หลายเดือนก่อน

    We need this only…. Thank you 🙏

  • @nagrajwellness9720
    @nagrajwellness9720 ปีที่แล้ว +1

    Bappy is teaching good excellent bappy

  • @mohsinkhan-bw3cd
    @mohsinkhan-bw3cd ปีที่แล้ว +2

    Krish explanation is more understandable

  • @trongang8914
    @trongang8914 5 หลายเดือนก่อน

    Hey Krish Naik, first of all thank you very much for the project, it is wonderful.
    I also have a question, in your project where CT and CD/CI happen?

  • @dhanushnayak1674
    @dhanushnayak1674 ปีที่แล้ว +2

    tq u krish for this video ❤❤

  • @Tech_Enthusiasts_Shubham
    @Tech_Enthusiasts_Shubham ปีที่แล้ว +2

    Sir please bring more lectures on langchain sir apart from these videos

  • @sayanm007
    @sayanm007 ปีที่แล้ว +1

    Thank you soo much Sir ❤❤❤

  • @RahulPrajapati-jg4dg
    @RahulPrajapati-jg4dg ปีที่แล้ว +1

    @Krish sir when you will be release new project end to end implemented??

  • @footballlegion6069
    @footballlegion6069 ปีที่แล้ว +2

    Hi Krish Naik i am kindly requesting for multi-output classification or regression👏👏👏

  • @nilavasen8631
    @nilavasen8631 ปีที่แล้ว +2

    Hi Krish, is this the MLOPS flow you have explained? Can I treat this video as MLOPS training as well?

  • @RahulPrajapati-jg4dg
    @RahulPrajapati-jg4dg ปีที่แล้ว +2

    Hello Krish sir can you implement end to end project based on lang chain for any used case like question answering or text classification or ner or any which to use growing fast in field of LLM

  • @sandeshchand8729
    @sandeshchand8729 11 หลายเดือนก่อน

    You have mentioned continuous integration, continuous deployment but not continuous training in this project. How can we do these steps?

  • @muhammedjunaisk4835
    @muhammedjunaisk4835 10 หลายเดือนก่อน

    Hi , I was going through the data validation code, I think you should add a ''break'' in the if statement otherwise it always gives the validation status of the last column.
    for col in all_cols:
    if col not in all_schema:
    validation_status = False
    with open(self.config.STATUS_FILE, 'w') as f:
    f.write(f"Validation status: {validation_status}")
    break
    else:
    validation_status = True
    with open(self.config.STATUS_FILE, 'w') as f:
    f.write(f"Validation status: {validation_status}")
    return validation_status

  • @biometricsjan
    @biometricsjan ปีที่แล้ว +2

    Thanks for the video Krish!
    Do you have tested different software like Aim, ClearML besides MLFlow? Tbf, I just want to log experiments and save the models :D

  • @sampendragon7639
    @sampendragon7639 ปีที่แล้ว +3

    Sir would you be able to do another python from scratch live sessions 7 days for python
    Please SIr

  • @koushikcs09
    @koushikcs09 ปีที่แล้ว +1

    Is this video available under Tech neuron courses?

  • @robertsinghiroman9918
    @robertsinghiroman9918 4 หลายเดือนก่อน

    Thank u 🙏 very usefull video

  • @서울리수
    @서울리수 10 หลายเดือนก่อน

    Krish, thank you a lot.

  • @PatientInAffliction
    @PatientInAffliction 24 วันที่ผ่านมา

    is this not classification project? why was rmse, r2 used as eval metric??

  • @sudhirmalik100
    @sudhirmalik100 9 หลายเดือนก่อน

    I think you should add data transformation steps as well in this and I have one doubt in general we do save preprocessing.pkl file and we call that in prediction pipeline and in while flask app as well please explain that thing as well

  • @Afzal3000
    @Afzal3000 ปีที่แล้ว +2

    Greetings sir,
    I have a request, please mention the prerequisite of the end to end in description or comment box,
    I am a beginner and enrolled in Ds masters 2.0 course, get tempted by this end to end projects of yours but hesitate, do i have knowledge to understand this will i be able to do it?
    With al this question i avoid this projects

    • @brunostordeur9533
      @brunostordeur9533 ปีที่แล้ว +1

      if you're a beginner i would suggest first focus on your data science skills (machine learning , numpy, pandas, matplotlib, sklearn etc..) and python, then when you feel confortable with your jupyter notebook and can do the basics steps of a machine learning project (EDA, cleaning the data, scaling/encoding the features, train a model and then make predictions) then you should be able to understand the full video (NB: watch krish video on docker before doing this project)

  • @GeandersonLenz
    @GeandersonLenz 8 หลายเดือนก่อน

    Amazing project!

  • @techandprogramming4688
    @techandprogramming4688 ปีที่แล้ว +1

    Can you make a detailed end-to-end project on Feature Stores for ML?

  • @A.M.8181
    @A.M.8181 ปีที่แล้ว +1

    Hello how can i use AutoML - example paycaret or ather automl?

  • @surajmota6415
    @surajmota6415 ปีที่แล้ว +2

    Please add data drift also..it's my request

  • @mrigankaghosh1177
    @mrigankaghosh1177 ปีที่แล้ว +1

    good explanation

  • @Kj123-h6h
    @Kj123-h6h ปีที่แล้ว +3

    Sir in Data Analytics which are the core modules or tools we have to study ?

    • @Juzz_RSA
      @Juzz_RSA ปีที่แล้ว

      Python for data analysis, sql, excel and tableau (or power bi) for data visualization...

    • @Juzz_RSA
      @Juzz_RSA ปีที่แล้ว

      Python for data analysis, sql, excel and tableau (or power bi) for data visualization...

  • @keenanandrew
    @keenanandrew 11 หลายเดือนก่อน

    Very useful video, thank you. Can you please advise how to access the MLFlow UI when the whole thing is being run in a Docker container?

  • @sumanpathak-r6p
    @sumanpathak-r6p 4 หลายเดือนก่อน

    Lots of Love

  • @adityasanyal4896
    @adityasanyal4896 2 หลายเดือนก่อน

    I ran the main.py program with different parameters but mlflow only shows one and only the first one that I made. Need help with this

  • @javier2993
    @javier2993 ปีที่แล้ว +1

    can you do a deploy in a local machine using onyl docker for example? Really good video !!!

  • @indianarmylover247
    @indianarmylover247 ปีที่แล้ว +2

    how to make portfolio through github actions

  • @MuhammedSavadkv
    @MuhammedSavadkv ปีที่แล้ว +1

    Thank you krish

  • @daffalestari9741
    @daffalestari9741 7 หลายเดือนก่อน

    i saw you already create your conda env. can you tell me sir what python version you used?

  • @nikcool8614
    @nikcool8614 8 หลายเดือนก่อน

    Can you please help me on what environment you created on 11:50 ?

  • @pratikgupta9161
    @pratikgupta9161 ปีที่แล้ว +1

    Thank you sir

  • @kanishksaxena7735
    @kanishksaxena7735 ปีที่แล้ว +1

    where have you passes usename and password for MLFLOW when converting ipynb to modular code...coz I am unable to see an experiment in MLFLOW UI

    • @kirankoshy209
      @kirankoshy209 ปีที่แล้ว

      I have the same problem. do you know how to solve it?

  • @ships778
    @ships778 9 หลายเดือนก่อน

    36:12 understanding workflow

  • @shivakumar-ic9dh
    @shivakumar-ic9dh 3 หลายเดือนก่อน

    Hi Krish, there is a bug in the data validation schema it's working and checking last column only in the schema.yaml if we comment all the columns except last one then also validation status is true.

  • @AmiruAbdulkarim
    @AmiruAbdulkarim ปีที่แล้ว +1

    Sir, at 24:12 git bash is returning error ImportError: cannot import name 'logger' from 'src.mlproject' (unknown location)
    How can I resolve it?

    • @rishijain9081
      @rishijain9081 ปีที่แล้ว

      instead of logger write logging in the code

    • @trisha2540
      @trisha2540 9 หลายเดือนก่อน

      not working@@rishijain9081

  • @haiderjan1230
    @haiderjan1230 ปีที่แล้ว +1

    This is amazing!

  • @FamilyAdventuresDiary
    @FamilyAdventuresDiary 6 หลายเดือนก่อน +1

    In all the videos by Bappy, he is speaking superfast, his intent is good but all the great information is lost because at the end his way of presentation is difficult to understand.

  • @malik_fa
    @malik_fa ปีที่แล้ว

    Great job 👍

  • @PrakashPit
    @PrakashPit ปีที่แล้ว +1

    @krishnaik06, sir can you tel me how to set a value to target variable during data preparation?

  • @GalibTube
    @GalibTube 4 หลายเดือนก่อน

    Hey sir> thanks for this video.we love your videos. I will keep it small. i had i issue while depolying error was "STOP AND REMOVE CONTAINER IF RUNNING" if anybody can know the issue plz comment down.Thanking again.

  • @vivekprasad3494
    @vivekprasad3494 10 หลายเดือนก่อน

    Sir I am load to data ingestion but not correct to file path in yaml how to correct

  • @deelipvenkat5161
    @deelipvenkat5161 ปีที่แล้ว +4

    Thanks!

  • @gauravpatil2926
    @gauravpatil2926 ปีที่แล้ว +1

    Krish, why you use 2 mic? Just curious 😊

    • @jiviteshvarshney3644
      @jiviteshvarshney3644 ปีที่แล้ว +2

      Paisa h bhai..next video m 4 mic lgega..

    • @geekyprogrammer4831
      @geekyprogrammer4831 ปีที่แล้ว +1

      his wish. whats your problem?

    • @gauravpatil2926
      @gauravpatil2926 ปีที่แล้ว +3

      @@geekyprogrammer4831 brother i am just asking. Is there anything tht i hve said ?

    • @mohsinkhan-bw3cd
      @mohsinkhan-bw3cd ปีที่แล้ว +1

      ​@@geekyprogrammer4831 u have a lot of attitude keep it in ur pocket dont show to others

    • @geekyprogrammer4831
      @geekyprogrammer4831 ปีที่แล้ว +1

      @@mohsinkhan-bw3cd quiet

  • @luccadribeiro
    @luccadribeiro ปีที่แล้ว

    Awesome, thanks a lot

  • @T.O.N.I
    @T.O.N.I ปีที่แล้ว +2

    Some one explain what exactly the project is

  • @TimiiOwolabi
    @TimiiOwolabi 4 หลายเดือนก่อน

    Thank you!!!!!

  • @rishiraj2548
    @rishiraj2548 ปีที่แล้ว +3

    👍🙏💯

  • @GDCIOT
    @GDCIOT ปีที่แล้ว

    hi thanks for this tutorial Bappy and Krish, I am facing this error"ImportError: cannot import name 'logger' from 'mlProject'; how to resolve it

    • @sudhirmalik100
      @sudhirmalik100 9 หลายเดือนก่อน

      write src.mlProject

  • @rotero-vb4qs
    @rotero-vb4qs 6 หลายเดือนก่อน

    Is it free or cost inducing ??

  • @lokeshbapte-j9n
    @lokeshbapte-j9n 10 หลายเดือนก่อน

    where MLFlow is Used in this video

  • @vidyapandit
    @vidyapandit 11 หลายเดือนก่อน

    Aise tutorials aur kaha mil sakte hai?

  • @VaibhavKapoor21BML004
    @VaibhavKapoor21BML004 2 หลายเดือนก่อน

    what is the MLfow tracking password is it same as dagshub?

  • @saimanohar4830
    @saimanohar4830 ปีที่แล้ว

    Grt project. Could anyone help on how to install mlflow==2.2.2, ensure==1.0.2 and python-box==6.0.2 packages.

  • @vanshatajaiswal701
    @vanshatajaiswal701 6 หลายเดือนก่อน

    this project is not clear. there is an issue

  • @dhirajghorpade6253
    @dhirajghorpade6253 7 หลายเดือนก่อน

    I am getting error when trying to install requirements.txt " ERROR: Failed building wheel for pyarrow"

    • @shubhambamane9445
      @shubhambamane9445 3 หลายเดือนก่อน +1

      yes same, what did you do?

    • @Mon_2212
      @Mon_2212 2 หลายเดือนก่อน

      @@shubhambamane9445 same please let me know if you got it

    • @gkkumar1264
      @gkkumar1264 หลายเดือนก่อน

      me too did you find a solution?

  • @debjeetmukherjee4591
    @debjeetmukherjee4591 หลายเดือนก่อน

    Is EC2 free to deploy ?

  • @kailashs7890
    @kailashs7890 3 หลายเดือนก่อน

    Can anyone give me the project summary for Resume

  • @rajkumar3433
    @rajkumar3433 6 หลายเดือนก่อน

    Isn't it making complicated. It's okay to do few extra steps and keep all things separate. Other people will not understand.

  • @Deepak-i4v5i
    @Deepak-i4v5i 7 หลายเดือนก่อน

    sir how to open a terminal

  • @nirajkumar2233
    @nirajkumar2233 ปีที่แล้ว

    How to join to data scince cource

  • @jeevaabishake8044
    @jeevaabishake8044 10 หลายเดือนก่อน

    Can some one tell how to ceate that mlproj environment with necessary package

    • @nikcool8614
      @nikcool8614 8 หลายเดือนก่อน

      Please tell the solution if you've got it

    • @kunalmehta4051
      @kunalmehta4051 8 หลายเดือนก่อน

      To create the Python environment write the following commands on your terminal-
      1) (To create a new virtual environment)
      2) (To activate your environment)
      3) once you are in the environment run "" to install the packages

  • @samtx
    @samtx 6 หลายเดือนก่อน

    10 mins into it no explanation of what is use case , prediction of what

  • @DigitalPrince
    @DigitalPrince 9 วันที่ผ่านมา

    15:13 / 2:32:34

  • @apheironnn
    @apheironnn ปีที่แล้ว +1

    01:22:39

  • @aminmavaddat4206
    @aminmavaddat4206 หลายเดือนก่อน

    Bro, please speak English man. everything is ok but I have to mute and follow from subtitle.

  • @nareshpatil5756
    @nareshpatil5756 ปีที่แล้ว +1

    Ok

  • @ivanalonso1460
    @ivanalonso1460 2 หลายเดือนก่อน

    okay

  • @pjma1059
    @pjma1059 ปีที่แล้ว +1

    way too confusing

  • @Stonk5331
    @Stonk5331 หลายเดือนก่อน

    ok?

  • @karnsinh
    @karnsinh ปีที่แล้ว

    @krihnaik06 Hello,
    I am following the video series since long I did the projects also.
    but now I am facing following issue in data ingestion:-
    artifacts/data_ingestion folder created successfully but facing above issue.

    • @pradeepp9849
      @pradeepp9849 ปีที่แล้ว

      Yes even I am facing the same issue

    • @ashaythamankar4936
      @ashaythamankar4936 10 หลายเดือนก่อน

      Same error.
      I think the zip file is downloading from GitHub. But in this video that zip file downloaded.

    • @ashaythamankar4936
      @ashaythamankar4936 10 หลายเดือนก่อน

      Hey,
      Now my code is working fine.
      Just restart computer and installed requirments once again.
      It worked for me.