TensorFlow vs Scikit learn Machine Learning Frameworks

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

КОМЕНТАРІ • 13

  • @StephenBlum
    @StephenBlum  12 годин тому

    Document in the video: gist.github.com/stephenlb/f87d4b344c3e24b116597d01943e6d45

  • @s.mohamedashik3459
    @s.mohamedashik3459 День тому +1

    Hey great video, may I know where can I find the document you used in the video, since I am preparing for an interview and that document would be more beneficial to my preparation. Thanks

    • @StephenBlum
      @StephenBlum  12 годин тому

      Yes absolutely here is the documnet in the video: gist.github.com/stephenlb/f87d4b344c3e24b116597d01943e6d45

  • @rossbennfors4103
    @rossbennfors4103 3 місяці тому +1

    I am doing a single label classification project for sorting images into classes. This is my first data science project and dont have any experience with scikit learn or tensorflow, which one do you think would be the best to use? Thanks!

    • @StephenBlum
      @StephenBlum  3 місяці тому

      Use the Keras APIs on Tensorflow. Start with MNIST example: keras.io/examples/vision/mnist_convnet/ and update the code to match your image classification project 🎉

    • @andreww5545
      @andreww5545 Місяць тому +1

      For a beginner-friendly, yet powerful tool, I recommend using TensorFlow's Keras API. - from Gemini

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

      Agreed with @andreww5545 - TensorFlow's Keras API 🚀

  • @PVivekmca
    @PVivekmca 5 місяців тому +2

    you made my day bro, thanks for that !!! but do you suggest tensor flow for trading algorithm development?

    • @StephenBlum
      @StephenBlum  5 місяців тому

      Hi P. Vivek, ah yes! Trading algorithm. TensorFlow is needed for Trading Algorithm. Also PyTorch / LibTorch is a common choice. FemtoGPT can also do it too. You'd change your dataset.txt file to be historical trading data. Like a CSV spreadsheet of data (excluding csv header line) Then you'd train the model. Now it can predict the next value

    • @PVivekmca
      @PVivekmca 5 місяців тому +1

      @@StephenBlum can I use scikit learn for this useful case too???
      Thanks for prompt reply

    • @StephenBlum
      @StephenBlum  5 місяців тому +1

      @@PVivekmca Scikit yes, the SVM models in Scikit: scikit-learn.org/stable/api/sklearn.svm.html this will give you an okay-level amount of trading algorithm development.

  • @DivoLakota
    @DivoLakota 6 місяців тому +1

    Very informative video : well explained and clear.

    • @StephenBlum
      @StephenBlum  6 місяців тому

      thank you! 😊 happy to explain the differences. both scikit and tensorflow are great machine learning frameworks. Scikit great for spreadsheet sized data sets. Tensorflow is more advanced and is best for larger volumes of data.