ThePrincipalComponent
ThePrincipalComponent
  • 19
  • 153 912

Відео

Elliptic Curve Point Addition - Bitcoin From Scratch in Python - BFSP 01
Переглядів 2679 місяців тому
point addition resource: math.stackexchange.com/questions/2198139/elliptic-curve-formulas-for-point-addition
Intro to Elliptic Curves - Bitcoin From Scratch in Python - BFSP 00
Переглядів 2339 місяців тому
Intro to Elliptic Curves - Bitcoin From Scratch in Python - BFSP 00
Recreating DeepMind's AlphaZero - AI Plays Connect 4 - Part 5: Building the ResNet Neural Network
Переглядів 1,8 тис.Рік тому
In this series we re-create DeepMind's AlphaZero to create an Artificial Intelligence Reinforcement Learning algorithm that plays Connect 4 using Python. View the rest of the series: ua-cam.com/users/playlist?list. Full Code: github.com/ThePrincipalComponent/AlphaZeroConnect4 AI, Deep Learning, Reinforcement Learning, DeepMind, Convolutional Neural Networks, Monte Carlo Tree Search, AlphaGo, Al...
Stable Diffusion Tutorial - 1024x1024 High Resolution Images with Standard Consumer GPU - 100% Free
Переглядів 29 тис.Рік тому
If you already have the Stable Diffusion repository up and running, skip to 15:45. For anyone running on less than 10 GB of VRAM, you will need to add two lines of code in the txt2imghd.py file: 1. Find the line of code that says: model = instantiate_from_config(config.model) 2. Immediately below it add a line that reads: model.half() 3. Find the line of code that says: init_image = repeat(init...
How to Install Git and add to PATH - Git is not recognized as an internal or external command
Переглядів 26 тис.Рік тому
How to fix error: Git is not recognized as an internal or external command
Stable Diffusion for Dummies - How to Install and Use Text to Image Art Generation AI - 100% Free
Переглядів 39 тис.Рік тому
If you are running into an issue that mentions git or missing modules/packages, it is a very simple fix: ua-cam.com/video/lt9oDAvpG4I/v-deo.html Step-by-step tutorial walk through of installation and use of Stable Diffusion Art Generation AI model. Link to code on GitHub: github.com/lstein/stable-diffusion/tree/78aba5b770d6e85e44c730da9735118d10912475 Link to Public Release: stability.ai/blog/s...
Recreating DeepMind's AlphaZero - AI Plays Connect 4 - Part 4: Building the ResNet Neural Network
Переглядів 1,6 тис.Рік тому
In this series we re-create DeepMind's AlphaZero to create an Artificial Intelligence Reinforcement Learning algorithm that plays Connect 4 using Python. View the rest of the series: ua-cam.com/users/playlist?list. Full Code: github.com/ThePrincipalComponent/AlphaZeroConnect4 A nice explanation of convolutions and padding: deeplizard.com/learn/video/qSTv_m-KFk0 AI, Deep Learning, Reinforcement ...
Recreating DeepMind's AlphaZero - AI Plays Connect 4 - Part 3: Monte Carlo Tree Search
Переглядів 1,7 тис.Рік тому
In this series we re-create DeepMind's AlphaZero to create an Artificial Intelligence Reinforcement Learning algorithm that plays Connect 4 using Python. View the rest of the series: ua-cam.com/users/playlist?list.. Full Code: github.com/ThePrincipalComponent/AlphaZeroConnect4 AI, Deep Learning, Reinforcement Learning, DeepMind, Convolutional Neural Networks, Monte Carlo Tree Search, AlphaGo, A...
Recreating DeepMind's AlphaZero - AI Plays Connect 4 - Part 2: Intro to Monte Carlo Tree Search
Переглядів 3 тис.2 роки тому
In this series we re-create DeepMind's AlphaZero to create an Artificial Intelligence Reinforcement Learning algorithm that plays Connect 4 using Python. A nice visualization of MCTS: ua-cam.com/video/62nq4Zsn8vc/v-deo.html View the rest of the series: ua-cam.com/users/playlist?list... Full Code: github.com/ThePrincipalCompon... AI, Deep Learning, Reinforcement Learning, DeepMind, Convolutional...
Recreating DeepMind's AlphaZero - AI Plays Connect 4 - Part 1: Building the Game Environment
Переглядів 1,5 тис.2 роки тому
In this series we re-create DeepMind's AlphaZero to create an Artificial Intelligence Reinforcement Learning algorithm that plays Connect 4 using Python. View the rest of the series: ua-cam.com/play/PLkYhK7LiOk0OWeGIRsbJz8kZGWxhrTpRx.html Full Code: github.com/ThePrincipalComponent/AlphaZeroConnect4 AI, Deep Learning, Reinforcement Learning, DeepMind, Convolutional Neural Networks, Monte Carlo ...
Recreating DeepMind's AlphaZero - AI Plays Connect 4 - Part 0: Introduction
Переглядів 1,9 тис.2 роки тому
In this series we re-create DeepMind's AlphaZero to create an Artificial Intelligence Reinforcement Learning algorithm that plays Connect 4 using Python. View the rest of the series: ua-cam.com/play/PLkYhK7LiOk0OWeGIRsbJz8kZGWxhrTpRx.html pygame code developed from: github.com/mahir008/Four_Connect/blob/main/main.py AI, Deep Learning, Reinforcement Learning, DeepMind, Convolutional Neural Netwo...
Why You Can't Get Rich Quick - Automated Cryptocurrency Trading Bot with Python - Pt. 7
Переглядів 2,5 тис.2 роки тому
Part 7 of the automated cryptocurrency trading series. In this video, we explain misconceptions about cryptocurrency trading. Disclaimer: Cryptocurrency markets are very volatile, this video and others in this series are for educational purposes only and should not be regarded as financial advice. View the rest of the series: ua-cam.com/play/PLkYhK7LiOk0MPp44WMJMnQ4pBknK0Khli.html Full Code on ...
Automated Cryptocurrency Trading Bot with Python - Pt. 6 Live Trading on the Binance API (cont.)
Переглядів 3,9 тис.2 роки тому
Part 6 of the automated cryptocurrency trading series. In this video, we finish our implementation of a simple trading strategy on the Binance API. Disclaimer: Cryptocurrency markets are very volatile, this video and others in this series are for educational purposes only and should not be regarded as financial advice. View the rest of the series: ua-cam.com/play/PLkYhK7LiOk0MPp44WMJMnQ4pBknK0K...
Automated Cryptocurrency Trading Bot with Python - Pt. 5 Live Trading on the Binance API
Переглядів 5 тис.2 роки тому
Part 5 of the automated cryptocurrency trading series. In this video, we begin to implement a simple trading strategy on the Binance API. View the rest of the series: ua-cam.com/play/PLkYhK7LiOk0MPp44WMJMnQ4pBknK0Khli.html Full code on GitHub: github.com/ThePrincipalComponent/01_TradingSeries/blob/main/Part5_6_live_trading.py
Automated Cryptocurrency Trading Bot with Python - Pt. 4 Machine Learning on Technical Indicators
Переглядів 13 тис.2 роки тому
Automated Cryptocurrency Trading Bot with Python - Pt. 4 Machine Learning on Technical Indicators
Automated Cryptocurrency Trading Bot with Python - Pt. 3 Double Bottom Bollinger Bands Backtesting
Переглядів 4 тис.2 роки тому
Automated Cryptocurrency Trading Bot with Python - Pt. 3 Double Bottom Bollinger Bands Backtesting
Automated Cryptocurrency Trading Bot with Python - Pt. 2 Bollinger Bands Backtesting
Переглядів 8 тис.2 роки тому
Automated Cryptocurrency Trading Bot with Python - Pt. 2 Bollinger Bands Backtesting
Automated Cryptocurrency Trading Bot with Python - Pt. 1 Gathering Data
Переглядів 12 тис.2 роки тому
Automated Cryptocurrency Trading Bot with Python - Pt. 1 Gathering Data

КОМЕНТАРІ

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

    Mine showed fork bomb💀

  • @kimjong-un4521
    @kimjong-un4521 Місяць тому

    Part 6 please

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

    Thank you very much brooh, may God reward you with goodness

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

    👏👏

  • @fletcherlewis6767
    @fletcherlewis6767 2 місяці тому

    what if you still get the "git is not recognized as an internal or external command, operable program or batch file"

  • @mm-wm6uh
    @mm-wm6uh 3 місяці тому

    any github for your code mate?

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

    thank you very helpful and strightforward

  • @eliasmonroy1
    @eliasmonroy1 4 місяці тому

    thanks, it works.

  • @gruhitpatel9061
    @gruhitpatel9061 4 місяці тому

    Great Series and excellent explanation. Please release part-6 soon.

  • @xelastone
    @xelastone 4 місяці тому

    Will you be completing the series?

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

    Thank you so much

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

    thanks alot!!!!!!😉

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

    Very helpful bro....

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

    savior this guy!

  • @user-fr8hw2ez9j
    @user-fr8hw2ez9j 6 місяців тому

    Roberto Dumoran@44gmil

  • @nawrashussein2004
    @nawrashussein2004 8 місяців тому

    thanks a lot, you are amazing ... when will be the next video please ?

  • @24_santanurath56
    @24_santanurath56 9 місяців тому

    helps a lot

  • @dizhang5625
    @dizhang5625 10 місяців тому

    Save my life! Thanks!

  • @SlimmDrea
    @SlimmDrea 11 місяців тому

    It worked 🎉🎉🎉 thanks dude lol I spent hours last night trying to figure that out omg 😢

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

    @theprincipalcomponent Hi, I installed the Git a while ago into D disk. Now I saw that there is git path "D:\dasturlar\Git\bin" in system variables but there isn't path in User variables. Is this normal? Should I create path for Git in User variables?

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

    Oh no, where's the next part?

  • @Dr.M.Driver
    @Dr.M.Driver Рік тому

    how the hell do I reset everything I got lost and not the git repository stuff is in the wrong place god knows where

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

    thank you

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

    legend

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

    I did all that and got this error code 128 stderr: fatal: not a git repository (or any of the parent directories): .git

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

    I will look at this video today,because recent trained model can render correctly only in 1024 resolution.. Somehow I don't think other users can generate such high images.. I hope I will find there info

  • @giridhargopalan.t5419
    @giridhargopalan.t5419 Рік тому

    Thanks a lot man, it worked

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

    no module named torch..? for text 2 img, even thoo pytorch is installed

  • @user-zv6ze3yu3k
    @user-zv6ze3yu3k Рік тому

    helps me a lot,thank you!❤

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

    I still have windows 10. is it different on windows 10?

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

    You are truley talent, it's really worked

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

    Will this work with stable diffusion v2 and automatic1111? I'd really like to get those two running inside anaconda. As a side note; your tutorial gave me anaconda experience which allowed me to get autogpt going in anaconda. Cheers!

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

    Great series! Looking forward to the next part

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

    I have an Intel Iris Plus graphic card. Do I have any alternative? Thank you

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

    So this is no different essentially than running a 512 stable diffusion image through openjourney then imputing that file into cupscale and running ESRGAN 4x on it right This just automatically upscales the 512 image correct ?

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

      Ive been running my selected 512 images into cupscale , but if this somehow is creating better quality let me know. But im pretty sure I understand there is no difference

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

    Nice! I think you can simplify the code a little though. You can get the valid moves as just board.all(axis=0).astype(int) (or just leave out the astype(int), you probably won't need ints instead of bools anyway...) with and is_board_full as board.all() For checking the columns and rows in is_win you can use slices instead of the four equalities, e.g. to check the columns inside the double for loop you can just write board[column,range(row, row+4)] == player but here you can even remove the outer loop over the columns since you can do something like (board[:,range(row, row+4)] == player).all(axis=0).any() this way you can get rid of at least some of the code duplication. Also instead of checking the rows, columns, and both diagonal directions, you could get by having a nested helper function that checks only the columns and one of the diagonal directions and call it twice, once on board and once on board.transpose(). A good question to ask oneself would be how the code would generalize to accept not just more general board sizes, but an integer n instead of 4, and maybe even a board of dimension m.

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

    Hey there @ThePrincipalComponent . This was an awesome series. Can you possibly complete it soon? I was taking inspiration from this series to make another project for my school on a similar theme and now I am stuck. It would be awesome if you release the next part soon, I believe it is almost done.

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

    I really like your videos, looking forward to part 6

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

    I really hope you release part 6

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

    Señor usted es genial, thanks a lot :), muchas gracias pues

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

    Nice job works well but there were some dependencies that I had to install before it would run dream. Cool tutorial though!

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

    First of all, great work and thank you for all the information presented in the video series. Second, i have something to add/help: The "get_precision" function is not considering the step_size of the coins and that causes "LOT_SIZE" error. I modified to: get_precision(self, symbol): step_size = 0.0 for f in self.client.get_symbol_info(f'{symbol}USDT')['filters']: if f['filterType'] == 'LOT_SIZE': step_size = float(f['stepSize']) prec = int(round(-math.log(step_size, 10), 0)) return prec

  • @user-od7ge8ms4v
    @user-od7ge8ms4v Рік тому

    Congratulations for the great job and the explanation but the bot running without buy or sell orders... Can I do something to run with real trades?

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

    How can we generate with our own photo? thanks for the video!

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

    The full version of the ckpt file is for training purposes. ua-cam.com/video/lztn6qLc9UE/v-deo.html

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

    It will be nice when someone (or some company) creates an installable version with an easy to use interface similar to the online pay-for websites. And super nice when I can upload photos of a product and be able to output pictures or videos of the product in different scenarios or like a short video of a specific ring on a finger with the hand moving to display it. I think this would be an incredible marketing tool!

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

    Are you going to use self-play algoritm to train the network with the help of mcts? If ever you have plan in making part 6.

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

    very helpful thank you!

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

    you sound like Elon Musk

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

    It didn't download some packages completly and I get the error: "CondaSSLError: Encountered an SSL error. Most likely a certificate verification issue. Exception: [SSL: DECRYPTION_FAILED_OR_BAD_RECORD_MAC] decryption failed or bad record mac (_ssl.c:2633)"

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

      Now I used the update anaconda command and it told me to delete a few files by hand and restart the update command. I deleted the files by hand and now I'm unable to change the directory in anaconda.

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

      I never had any problems with any development environments. But everything python related always leads to errors.

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

      And now half of the files are corrupted. Now I will deinstall everything again and try to find the seventh different instruction to get it work.

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

      I did it again. Got the same error again. Used the update command and it worked. I also activated "ldm". But on the last step it told me that Python couldn't be found.

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

      I went to "Settings -> Aliasses for apps" and deactivated app installer for python. Now it recognizes Python, but it couldn't find the torch module. I give up.