Christian
Christian
  • Видео 11
  • Просмотров 3 560

Видео

Python Project for Beginners: Auto-Remove Silence from Video Clips
Просмотров 280Год назад
Google Colab with code: colab.research.google.com/drive/1QVGfNt67LhSzsZrdgv-L9tyt_5vnvT4L?authuser=1#scrollTo=YLvsgQ2uXiQ3
AI Project for Beginners: NFL Game Predictions with Python & Machine Learning
Просмотров 2,7 тыс.Год назад
Project Link - colab.research.google.com/drive/1_myoj4ecB1GuRVRBz-vTrQ-SXg7Ld2qm?usp=sharing
How I Fixed Ada Wong's Voice in Resident Evil 4 Remake and Separate Ways
Просмотров 260Год назад
How I Fixed Ada Wong's Voice in Resident Evil 4 Remake and Separate Ways
Edit Your Videos in 30 Seconds With This Program
Просмотров 13Год назад
Edit Your Videos in 30 Seconds With This Program
The Routine that Got Me a Google STEP Internship
Просмотров 26Год назад
The Routine that Got Me a Google STEP Internship
The Resume Changes That Got Me A Google Internship
Просмотров 95Год назад
The Resume Changes That Got Me A Google Internship
Advice from Software Engineers to Computer Science Students
Просмотров 25Год назад
Advice from Software Engineers to Computer Science Students
I built an AI that predicts NFL games with 70% accuracy
Просмотров 64Год назад
I built an AI that predicts NFL games with 70% accuracy
How to Use String and Character Methods in Java
Просмотров 12Год назад
How to Use String and Character Methods in Java
Learn Domain Classes in Java - Full Course
Просмотров 71Год назад
Learn Domain Classes in Java - Full Course

Комментарии

  • @tomkmb4120
    @tomkmb4120 3 месяца назад

    This was dope man. I was expecting to look at the view counter and see it in the thousands, same with the sub count - undiscovered high quality content! Any plans to do any more stuff similar to this? Would love to see more ML stuff around sports data.

    • @christianandtech
      @christianandtech 3 месяца назад

      My man I really appreciate that Tom it means a lot. As far as posting more right now I am actually just too busy because I just got a job which I am starting soon so I been getting ready for that!

    • @supersayian99
      @supersayian99 7 часов назад

      @@christianandtech Congrats and your ML is on point. I created one of my own and used Postman to capture the API to get the data, and I used Jupyter to clean and structure it. This actually simplified a lot of my steps. Thank you, sir!

  • @oldedb
    @oldedb 4 месяца назад

    Thank you for taking the time to create this. I have a question regarding the data being used to train the model. It appears you are using the averages from the full season and training the data on games in the past? Wouldn't that be a data leakage? It seems like this concept would be better applied using rolling averages of the games that occurred just prior to each game in the training data.

    • @christianandtech
      @christianandtech 3 месяца назад

      That makes a lot of sense the way you are suggesting. The approach I used isn’t perfect, it doesn’t account for a lot of things, namely player injuries and things of the sort, but I think it’s a good starting point for those that just want to try a project like this out and use machine learning / AI to predict things in the sports world

  • @richardc5064
    @richardc5064 4 месяца назад

    This is fantastic. I've been trying to do what you accomplished, but I've been working in Access and Excel. Your way is MUCH better, and I'm digging into the code to better understand the details of your approach, so I can port my existing work (if/as possible) to Python--which I'm only basically familiar with. One thing that I've done in my own Access modeling is to weight the factors I'm using. For some work, I use a 10 year history as-is. But for other work I use two years of history plus the current season. In those cases, I assign a weight of 1 to the furthest season back (2022 currently), a weight of 2 for last season (2023) and a weight of 3 for the current season. I'm attempting to give more weight to more recent data. Does weighting make sense in your code? I'm not familiar enough yet with all the functions, so I don't know if/how weighting would impact results. If so, what should I learn to make it happen? But thanks for what you've provided. It's awesome!

    • @christianandtech
      @christianandtech 4 месяца назад

      Hi Richard, thanks for watching man. That is very interesting what you are doing with Access and Excel. So in regards to the weighting I think that is a great idea but let me explain a bit how the code works currently. So the Logistic Regression model that I used in the code, the way it works is that you provide the two sets of data ( training data and testing data) and it will automatically adjust how heavily it weighs each factor (yards per play, etc) to try and most accurately predict the test data. Now back to your approach. I think your weighting can add to the accuracy potentially, however I personally am unsure where your weight would fit into this code as it as currently. Great idea though let me know if you end up doing that

    • @richardc5064
      @richardc5064 4 месяца назад

      @@christianandtech Thank you for taking the time to reply. I have one more question I hope you can answer regarding 2024. I've updated the 2023 play-by-play data through year end of last season. I opted to do it outside of the project (in Excel) as I'm much more familiar with that approach for the time being. But I want to now start including 2024 data. Rather than tweak the code to include a THIRD season, can I just merge the 2022 and 2023 data into a single file (retaining it as 2022 play-by-play until I get around to changing the file names throughout the script) and begin adding 2024 play-by-play into the 2023 file (also until I get around to modifying the file names in the code). The 2022 and 2023 files are eventually merged anyway, so I thought that would be acceptable. Will the code still function as you describe in your reply above? That is, does it consider DATES when determining weighting? On the surface, I believe this will be OK, but being new to Python and machine learning, I don't want to adopt a wrong approach. Thanks again.

  • @joseangel9823
    @joseangel9823 4 месяца назад

    loved your video, where can i get data for the 2024 season?

    • @christianandtech
      @christianandtech 4 месяца назад

      Hey Jose thanks for watching man. Let me get back to you on that it’s been awhile I gotta find the site again

    • @joseangel9823
      @joseangel9823 4 месяца назад

      @@christianandtech send the link of the site, but what I need are box scores of the players if you can get them I’ll highly appreciate it man

  • @samuilgeorgiev8243
    @samuilgeorgiev8243 4 месяца назад

    Hey! I was just looking into how to clean the data up, and it seems that the steps within are very inconsistent, from variable names to outright missing methods. One main missing method is "match_games_with_scores_updated" which I assume matches the games in both csv files such that they don't overlap each other. That's the problem I'm having now, hope you can get back to me!

    • @christianandtech
      @christianandtech 4 месяца назад

      Hey Samuil, thanks for watching. So yeah that process was a bit complicated and that section is the only one I didn’t document fully that’s why I tried to give you the cleaned data beforehand in the links so you didn’t have to do it. If I can find my original code I’ll update the doc to include it for you

    • @samuilgeorgiev8243
      @samuilgeorgiev8243 4 месяца назад

      @@christianandtech That would be awesome yeah! Do you know where you got the game schedule from as well?

  • @NicWerner
    @NicWerner 5 месяцев назад

    The link isnt working. I was mainly looking for your data.

    • @christianandtech
      @christianandtech 5 месяцев назад

      It should be working now. Let me know if you still have an issue. colab.research.google.com/drive/1_myoj4ecB1GuRVRBz-vTrQ-SXg7Ld2qm?usp=sharing

  • @myleshobbs3568
    @myleshobbs3568 6 месяцев назад

    Hey man I am trying to do this project but I don't see any attacked Google Colab book, please help me out man I am trying to follow along

    • @christianandtech
      @christianandtech 6 месяцев назад

      Thanks for watching. Updated the video description you should see the link now

  • @KALIGITHIPOPEJOHNPAUL22BCE955
    @KALIGITHIPOPEJOHNPAUL22BCE955 6 месяцев назад

    can i get the code

    • @christianandtech
      @christianandtech 6 месяцев назад

      Yeah here it is. I put it in the description too. colab.research.google.com/drive/1QVGfNt67LhSzsZrdgv-L9tyt_5vnvT4L?authuser=1#scrollTo=YLvsgQ2uXiQ3

  • @akrimnialhabil4541
    @akrimnialhabil4541 8 месяцев назад

    It works!, thanks!

  • @tornadozone1708
    @tornadozone1708 8 месяцев назад

    great keep it up , can u make script using an SRT file to cut the Silence ? But instead of cutting exactly at the specified time, could you cut roughly 2 seconds before and after that time? Thanks!"

  • @alanchau8037
    @alanchau8037 9 месяцев назад

    cool the code work perfectly love it

  • @ErikRicardoLC
    @ErikRicardoLC 11 месяцев назад

    I find fascinating how we guy think we kindda outsmart those Capcomp guys, Think about it, those are the most creatives minds in their country. Can a bunch of randoms dudes with internet access can be better storytellers? This reminds me Lev Manovich's book The Language of New Media. One of their thesis is that we no longer can consume media as a whole but a part of our personal database of content, interchangeable bits of pieces with no context. Allow me elaborate on this. We need to Ada's voice be exactly the same as our regular action heroine to be assimilate. No prior existence of context of her story. Ada's a human monster. She fooled that unnamed scientist to hand over information and then leaded hin to the most horrible death while he still though she love him. And Ada is still responsible for Raccoon City fall. So many blood on her hands and you want her to talk like your high school female friend who pretend to be a femme fatale. Maybe I'm overthinking this but that's the reason we are media consumer not art creators. Ada's character to me is portrait with her voice as one the most cold hearted human beings, manipulative, maybe struggling with the guilt of Raccon City or PTSD. One of my favorites animes, Lucky Star even talks about it in one of its episodes of this databasification of our media character tropes back in 2007 but you maybe were too young to watch it.

  • @UnicronsLeftNut
    @UnicronsLeftNut Год назад

    Still better than the real RE4R voice actress. It's not even close.

  • @MicJackF
    @MicJackF Год назад

    :)

  • @SidY.-hj3eq
    @SidY.-hj3eq Год назад

    Hey! This is incredible! I am currently working through the code and trying to predict playoff games using this method! Will let you know how it turns out. Kudos on the impressive work

    • @christianandtech
      @christianandtech 10 месяцев назад

      Awesome to hear, good luck 👍🏽

    • @OvixioTams
      @OvixioTams 6 месяцев назад

      @SidY.-hj3eq can you share you latest spreadsheets? I am working towards next season

    • @SidY.-hj3eq
      @SidY.-hj3eq 6 месяцев назад

      @@OvixioTams data based off of previous season game logs and can be found at the website mentioned in the video! Best of luck! I’ll be attempting again once we get 3 weeks into the new season.

    • @OvixioTams
      @OvixioTams 6 месяцев назад

      @@SidY.-hj3eq understood I have the data and spreadsheets but I need to merge the last few columns, week, opponent score and home team won true/false. Can I email you? I worked on trying to do the data cleanup with no success

  • @watchmangamer4380
    @watchmangamer4380 Год назад

    And me thinking it was serious lol

  • @angelobauer3228
    @angelobauer3228 Год назад

    💪 Promo*SM

  • @kionkion411
    @kionkion411 Год назад

    Love!

  • @Manakel6899
    @Manakel6899 Год назад

    Thanks, great advice!

  • @zenmashh
    @zenmashh Год назад

    Is this the TikTok girl??? Also is this satire cause wtf 🤣

  • @christianandtech
    @christianandtech Год назад

    Hope you guys liked the video 🤣 thanks for checking it out