Dataquest
Dataquest
  • 50
  • 2 135 380
6 ChatGPT Skills You Need to Learn
Did you know that 90% of companies currently hiring want workers with ChatGPT expertise? ChatGPT skills aren't just a nice-to-have in 2024 - they're your key to thriving in today's AI-driven job market. As generative AI (GenAI) transforms industries across the board, professionals who can harness the power of ChatGPT are in high demand and commanding impressive salaries.
Take a deep dive into each skill and learn more about actionable insights and real-world examples that can help you become a ChatGPT expert.
www.dataquest.io/blog/10-chatgpt-skills-you-need-to-learn-in-2024/
Переглядів: 851

Відео

Why you Should Keep Working on Harder (and Harder) Projects?Why you Should Keep Working on Harder (and Harder) Projects?
Why you Should Keep Working on Harder (and Harder) Projects?
Переглядів 6609 місяців тому
Become a Python Pro! Take on Bigger Challenges - as you find success with independent projects, keep increasing the difficulty and scope of your projects. Learning Python is a process, and you’ll need momentum to get through it. Once you’re completely comfortable with what you’re building, it’s time to try something harder. Continue to find new projects that challenge your skills and push you t...
How to Create Your Own Python Projects?How to Create Your Own Python Projects?
How to Create Your Own Python Projects?
Переглядів 2,5 тис.9 місяців тому
After you’ve worked through a few structured projects, you can speed up your learning by working on independent Python projects. But here’s the key: Start with a small project. It’s better to finish a small project rather than embark on a huge project that never gets completed. We know it can feel daunting to find a good Python project to work on but here are some resources to jumpstart your cr...
Why Start with Guided Projects? Learn Python the Easy Way!Why Start with Guided Projects? Learn Python the Easy Way!
Why Start with Guided Projects? Learn Python the Easy Way!
Переглядів 4239 місяців тому
When it comes to guided projects, there is no one right place to start. The best resources for you will depend on what motivates you as well as what your goals are for Python programming. Are you interested in general data science or machine learning? Do you want to build something specific like an app or website? Check our these recommended resources for inspiration, organized by category www....
Learn the Basic Syntax, Quickly!Learn the Basic Syntax, Quickly!
Learn the Basic Syntax, Quickly!
Переглядів 6129 місяців тому
We know you can't wait to start your own projects but learning the basic syntax is unavoidable and we will help you learn the Python basics without killing your motivation. At Dataquest, we help you learn Python commands in a fun way, like analyzing weather data. And don't worry, we won't stick to the boring stuff for too long. In just a few weeks, you'll be ready to jump into your own projects...
Why do You Want to Learn Python?Why do You Want to Learn Python?
Why do You Want to Learn Python?
Переглядів 1,2 тис.9 місяців тому
Ever wondered why you should learn Python? Step 1 is all about finding your motivation! Whether it's data science, game development, or robotics, pinpointing your passion can be a game-changer. Dive in to explore how aligning your Python projects with your interests can make the learning process exhilarating! 🔗 Full Python Project Resources: Learn Python The Right Way www.dataquest.io/blog/lear...
Learn Python the Right Way in 5 Steps in 2023Learn Python the Right Way in 5 Steps in 2023
Learn Python the Right Way in 5 Steps in 2023
Переглядів 8739 місяців тому
What's the best way to learn Python programming? By actually programming in Python. Here's a five-step approach that'll help minimize the boring and maximize your chances of actually making it to your end goal, whether that's learning Python for data science or game development or robotics or whatever else you'd like. This approach will work for anyone, with any Python goal. In fact, it's all a...
Project Walkthrough: Building a Power BI AppProject Walkthrough: Building a Power BI App
Project Walkthrough: Building a Power BI App
Переглядів 4,5 тис.Рік тому
In this video, we take you through the process of a start-to-finish data analysis project using Microsoft Power BI. This is a part of Dataquest's "Business Analyst in Power BI" online career path which helps you go from zero to data analyst. In this video, you'll learn how to import and clean data, create new columns and measures, build visualizations, and share reports and dashboards. If you'r...
Project Walkthrough: Visualizing Data with Power BIProject Walkthrough: Visualizing Data with Power BI
Project Walkthrough: Visualizing Data with Power BI
Переглядів 2 тис.Рік тому
In this video, we take you through the process of modeling data in Power BI. This is a part of Dataquest's "Business Analyst in Power BI" online career path which helps you go from zero to data analyst. In this video, you'll learn how to set up and interface with Power BI, fix issues with data import, clean and transform data, visualize a scatter plot and a stacked column chart, design a dashbo...
Project Walkthrough: Modeling Data in Power BIProject Walkthrough: Modeling Data in Power BI
Project Walkthrough: Modeling Data in Power BI
Переглядів 1,5 тис.Рік тому
In this video, we take you through the process of modeling data in Power BI. This is a part of Dataquest's "Business Analyst in Power BI" online career path which helps you go from zero to data analyst. In this video, you'll learn how to set up the interface, load and clean data, transform data, investigate total sales, and more. If you're interested in learning more, check out the "Business An...
Math And NumPy Fundamentals For Deep LearningMath And NumPy Fundamentals For Deep Learning
Math And NumPy Fundamentals For Deep Learning
Переглядів 12 тис.Рік тому
We'll cover the basics of linear algebra and calculus for deep learning. We'll use NumPy, a Python framework for working with arrays, to implement the concepts. Follow along with code and written explanations here - github.com/VikParuchuri/zero_to_gpt/blob/master/explanations/linalg.ipynb Chapters 00:00 Introduction 02:09 Plotting a Vector 16:10 Linear Regression 18:51 Matrix Multiplication 34:...
Backpropagation In DepthBackpropagation In Depth
Backpropagation In Depth
Переглядів 3 тис.Рік тому
In this video, we'll take a deep dive into backpropagation to understand how data flows in a neural network. We'll learn how to break functions into operations, then use those operations to build a computational graph. At the end, we'll build a miniature PyTorch to implement a neural network. Follow along with the code and written explanations here - github.com/VikParuchuri/zero_to_gpt/blob/mas...
Classification With Neural NetworksClassification With Neural Networks
Classification With Neural Networks
Переглядів 7 тис.Рік тому
We'll use a neural network for classification. In classification, we categorize data, and use the neural network to predict which category each example is in. You'll learn the theory of classification, including the negative log likelihood loss function, and the sigmoid and softmax activation functions. Then you'll implement a classifier in NumPy that can predict whether a telescope saw a star,...
RNN From Scratch In PythonRNN From Scratch In Python
RNN From Scratch In Python
Переглядів 21 тис.Рік тому
We'll build a recurrent neural network (RNNs) in NumPy. RNNs can process sequences of data, like sentences. We'll start with the theory of RNNs, then build the forward and backward pass in NumPy. You can find a text version of this video here - github.com/VikParuchuri/zero_to_gpt/blob/master/explanations/rnn.ipynb . And all of the previous lessons here - github.com/VikParuchuri/zero_to_gpt . Ch...
Neural Network From Scratch In PythonNeural Network From Scratch In Python
Neural Network From Scratch In Python
Переглядів 35 тис.Рік тому
We'll learn the theory of neural networks, then use Python and NumPy to implement a complete multi-layer neural network. We'll cover the forward pass, loss functions, the backward pass (backpropagation and gradient descent), and the training loop. At the end, we'll use our neural network to predict the weather. You can find the text version of this lesson here - github.com/VikParuchuri/zero_to_...

КОМЕНТАРІ

  • @angstrom1058
    @angstrom1058 День тому

    An application about as old as the hills...

  • @stephanefedim6759
    @stephanefedim6759 2 дні тому

    Thanks for this high-quality video. Can you give the impact of the splitting in the semantic of the summarization? Assuming that it's not intelligent tokenization you applied, batches of 850 tokens can overlap in terms of the meaning of the global doc.

  • @kavinpandian
    @kavinpandian 2 дні тому

    great tutorial!

  • @steamedtech
    @steamedtech 3 дні тому

    i love math

  • @philshergold1716
    @philshergold1716 5 днів тому

    I keep getting list index out of range on standings_table = soup.select(‘table.stats_table’)[0] please help me

  • @ShivendraParmar-dp3rp
    @ShivendraParmar-dp3rp 5 днів тому

    guys why after test['predictions']=predictions , size of array disturbing instead of 405*8 its coming 405*413 can anyone help me out with it

  • @lucaslessa5442
    @lucaslessa5442 5 днів тому

    How would be with my API need as parameter an Image? Love the video

  • @razinchoudhury1368
    @razinchoudhury1368 6 днів тому

    when i run the code on jupyter lab it was working in the first couple tries, but now i keep getting an error early in the code. for some reason i get a index out of boudns error for the soup.select(table.stats_table) part of the code. it was working perfeclty before and showed all the links and eveyderhitng, and out of nowehre it stopped and i keep getting this error. Can anyoen explain why please? Thanks

  • @mdabdullahalrumy8620
    @mdabdullahalrumy8620 10 днів тому

    can not download the data and google site showing not valid

  • @muradbayr9900
    @muradbayr9900 13 днів тому

    Please guys help me on the first step got stuck cannot import csv kinda problem with pandas

  • @chealol4233
    @chealol4233 13 днів тому

    How would you be able to do this for "Predicting" an player to record a hit in a given game? Is that possible?

  • @usernameispassword4023
    @usernameispassword4023 15 днів тому

    Shouldn't it be 1 - hiddens**2 for the tanh derivative?

  • @KXS11
    @KXS11 18 днів тому

    how can we show the predection in 54 rather than 0.54

  • @marmadukethurmond8202
    @marmadukethurmond8202 20 днів тому

    I've always been interested in binary options, but I never knew where to start. Thanks to you and this video, I finally felt confident enough to give it a try.

  • @furinfo5158
    @furinfo5158 21 день тому

    plz dont invest in crypto especialy waqar zaka group or u will be destroying ur life

  • @philippenancy7108
    @philippenancy7108 23 дні тому

    Hi! I'm very admirative of you math champions, as the math dumb I am! Although, S&P500 is an index, and, unless I understand backwards, it is supposed to climb by nature since it is made of the best behaving shares of the market... I've tested one of my shares (ORA.PA), just to see if I'm not missing something. The result is very... depressing! Only 1/3 is successful (0: 184, 1:66) Then I wanted to test if the reciprocal had better chances (otherwise, it would mean tomorrow has no connection with today, and gambling would be as efficient, did I guess right?) I concluded I should mostly have a bearish strategy on that particular share (1: 154, 0:96) I want to explore (but it's just a guessing game, because my statistics math level is close to 0) and see if, as often said, the crossing of the MACD over its signal, especially under 0, is often a good buying signal, even if it's not really so frequent. Anyway, you've triggered my curiosity regarding machine learning towards shares. I'm sure, combined with some supervision and provided you can match a strategy with a corresponding share, chances are you improve your rentability and at least have a better feeling and confidence in your success. Thank you for that.

  • @drewfrench8784
    @drewfrench8784 24 дні тому

    Just an FYI, in Spyder, teams.corr() didn't work because you have strings in there, so you have to remove the teams and country column for the method to work

  • @HelloIamLauraa
    @HelloIamLauraa 24 дні тому

    I loved ur video it is so well-explained!! I only used scikit-learn but now I understand better how it's works. But I have a question: why is it not good no use height and wight to use as feature?

  • @user-gm4ot2ex3v
    @user-gm4ot2ex3v 25 днів тому

    so ive just came across your channel a few days back and i just love it, yhe way you explain things and show without any edits, ets. cant wait to try your method becouse ive tried other methods from a experienced trader and lost my earning from that month (about 700 usd) i was so angry. but i said it is what it is and moved on, ill rather say o well then what if. THANK YOU SO MUCH!!!🏕

  • @jinluwang5671
    @jinluwang5671 25 днів тому

    Nice but a little too much for a newbie 😅

  • @luqmanjuzaili5213
    @luqmanjuzaili5213 26 днів тому

    Thank you for the amazing video! However, when I tried running this, I received a value error teams.corr()["medals"] This seems to be because the "Team" and "Country" column are in string, and hence making it impossible to get a corr value. So i removed them just to obtain the corr values. But it seems to work for you without filtering the string type columns out. Any ideas why?

  • @Machconsults
    @Machconsults 27 днів тому

    Great video

  • @vcodevideo
    @vcodevideo 28 днів тому

    New subscriber here!!, thanks for your time. I'm working (surely wrong 😅) to find the correct model or algorithm to allocate a number of workers (+300) in a number of workstations. I've al the data ready, but not sure how to deal with rhe model or train this kind of data. It would be much appreciated if can point some tips for that. Every week I've to make the Next week plan and it's a lot of work and pain in the ass 😂

  • @rahulnarayan6878
    @rahulnarayan6878 Місяць тому

    It is taking a lot of time to get pages from year 1991 to 2021 to load in html files in our local comouter and shows timeout error. what should i do?

  • @yedmitry
    @yedmitry Місяць тому

    Thanks for the video!

  • @dimitriosdesmos4699
    @dimitriosdesmos4699 Місяць тому

    Oh NOO !!!! the market has been cracked by an Indian dude and is on youtube.....The Kings are trembling right now because they dont know where they will store their money...back to castle vaults guarded by Dragons....oh vikasparuchuri what have you done to the world with Dataquest.?????....now everyone is going to be rich.

  • @bencole8301
    @bencole8301 Місяць тому

    Really enjoyed this walkthrough! Thank you for sharing!

  • @Unlimited2Guwahati
    @Unlimited2Guwahati Місяць тому

    thankyou so much for the information will you able to guide how to make Algorithm Model in CIVIL ENGINEERING Sir.

  • @jerryli2276
    @jerryli2276 Місяць тому

    Hi, during the parsing part, when I run the code till if len(games) % 100 == 0: print(f"{len(games)} / {len(box_scores)}"), it keeps telling me the error: html5lib not installed, even if I have installed it myself. Could you help me with it?

  • @thebinarybin
    @thebinarybin Місяць тому

    Never could get Chromium to work. I looked everywhere to find a solution for a very long time. So I ended up using Firefox as well. Does anyone have a solution to the chromium issue to direct to me. I really want to figure that out. Great job with the video! Very intuitive. Wish more content was on the regular.

  • @nickst2797
    @nickst2797 Місяць тому

    Thanks! One question, is this video complete?

  • @tsrinivas2406
    @tsrinivas2406 Місяць тому

    This is very nice way to get started using data science with the markets. This gives a nice framework to get started. And attempt to expand the predictors (on RSI based or Change in Open Interest , some correlation with the major stocks composing that index) . Thank you for sharing.

  • @KR-good
    @KR-good Місяць тому

    This was an excellent presentation.

  • @user-gj3kz7cm3x
    @user-gj3kz7cm3x Місяць тому

    I hate this sort of useless BS clogging my feed.

    • @karag4487
      @karag4487 Місяць тому

      What do you mean?

    • @user-gj3kz7cm3x
      @user-gj3kz7cm3x Місяць тому

      It is poor quality content. The technology is obsolete and the methodology is laughable. I would be disappointed to see any such lesson taught in an undergraduate program.

    • @karag4487
      @karag4487 Місяць тому

      ​@@user-gj3kz7cm3x I think they do teach the basics of this in undergraduate

  • @fassstar
    @fassstar Місяць тому

    One correction, not relevant to the actuall regression, but should be said nonetheless. The number of medals one athlete can win is not limitted to one, rather it is limited to the number of events the athlete competes in (maximum of one per event). In fact, numerous athletes have one multiple medals in one Olympics. Just wanted to clarify that. Of course, from a certain number of athelets, it will be impossible for a smaller team to compete in as many events as the large team, making it more likely that the larger team wins more medals.

  • @SIR_Studios786
    @SIR_Studios786 Місяць тому

    where is the model downloaded ?

  • @trynagethitbytruckkun7835
    @trynagethitbytruckkun7835 Місяць тому

    I am getting a zero division error while calculating precision score so please help

  • @khanhtruongphamngoc2246
    @khanhtruongphamngoc2246 Місяць тому

    how to evaluate the accuracy of the model sir?

  • @gandiyasasri
    @gandiyasasri Місяць тому

    It is very good and most useful in our daily life

  • @Leonhart_93
    @Leonhart_93 Місяць тому

    If you went as far as to do it from scratch, then you might have just as well done it in anything other than Python. All that Python has in this field is libraries. Because it's not like Python has any advantage when it comes to linear algebra. If anything, it will be slower than most other things.

  • @PavithraR-ob1vn
    @PavithraR-ob1vn Місяць тому

    What are the computer languages they used?

  • @sigfigronath
    @sigfigronath Місяць тому

    we need another EPL video :)

  • @Machconsults
    @Machconsults Місяць тому

    This chanel is my life

  • @sohanshet5674
    @sohanshet5674 Місяць тому

    What the accuracy of the system ? Has anyone caculated

  • @ekeminiben6885
    @ekeminiben6885 Місяць тому

    Thank you very much sir for this inspiring tutorial. Please I want to build a recommender system, "The aim of this study is to design and implement a Recommender System for clothing styles based on user body type derived from user body measurements." Please can you help with this kind of project or how can I go about it from getting the dataset to completion. Thank you

  • @sharliduravlog2
    @sharliduravlog2 Місяць тому

    is it offline or online?

  • @ashanbandaranayeke9344
    @ashanbandaranayeke9344 Місяць тому

    hi! enjoying making this great video, it's the first time I incorporated sentiment analysis at all (in my ML journey). *I'm having a problem with the history attribute/method of yf!* Anyone else?

  • @sungkim1589
    @sungkim1589 Місяць тому

    I did pip install yfinance in cmd. I run jupyiter, and import yfinance as yf. it does not work why?

  • @quoit99training83
    @quoit99training83 Місяць тому

    Any plans of making learning skill path for Microsoft VBA? It’s widely used at companies to automate reports