Alexandre Sajus
Alexandre Sajus
  • 7
  • 104 203
DCS Player goes Dogfighting in Real Life
Massive thanks to @skyCombatAce for this insane experience!
Check out the BFM Guides from @AIRWARFAREGROUP here:
th-cam.com/play/PLroS5xjXW90smqJPDcIlPvXYUKxLM94bm.html&si=S4A9SO4Ro8Lnw7E5
Chapters:
0:00 Intro
1:17 Disclaimer
1:47 Briefing
2:58 Fight 1
4:29 Debrief 1
5:30 Fight 2
7:12 Debrief 2
8:07 Fight 3
9:06 Debrief 3
9:44 Fight 4
10:49 Debrief
11:28 Key Takeaways
14:14 Thanks
มุมมอง: 25 578

วีดีโอ

Creating JARVIS - Python Voice Virtual Assistant (ChatGPT, ElevenLabs, Deepgram, Taipy)
มุมมอง 19K7 หลายเดือนก่อน
Check out the GitHub repository here: github.com/AlexandreSajus/JARVIS 0:00 Talking to JARVIS 0:58 Intro 1:52 How JARVIS works 3:12 How to setup JARVIS 4:05 Getting API keys 5:05 Installing JARVIS 6:49 Running JARVIS 7:44 Talking to JARVIS 9:18 How to mod JARVIS for your use case 10:45 Recording audio using Pyaudio 12:25 Transcribing to text using Deepgram 12:45 Sending prompts to OpenAI GPT 13...
Training an AI for WIPEOUT (MLAgents Unity Reinforcement Learning)
มุมมอง 2.2Kปีที่แล้ว
Thanks a lot to @TwoMinutePapers for giving me this idea three years ago and inspiring me to join, study, and work in the AI field today! 0:00 Intro 0:30 Reinforcement Learning 1:43 Training 3:34 Results
Detecting Military Vehicles using AI (ARMA 3 YOLOv5 Image Segmentation)
มุมมอง 9Kปีที่แล้ว
Fine-tuning YOLOv5 to detect military vehicles on aerial imagery in ARMA 3 GitHub Repo github.com/AlexandreSajus/Military-Vehicles-Image-Recognition Cool Annotation Tool www.makesense.ai/ 0:00 Intro 0:29 Computer Vision 1:59 Labelling Strategy 3:15 Results 3:37 Conclusion
Creating an Ecosystem in Unity (Unity 3D Prey Predator System)
มุมมอง 3.6Kปีที่แล้ว
A Simple Ecosystem with Lions, Chickens, and Grass in Unity GitHub Repo github.com/AlexandreSajus/Unity-Ecosystem 0:00 Intro 0:22 The Lion 1:06 The Chicken 1:23 Natural Selection 1:50 Results 2:33 Conclusion
Controlling Drones with AI (Python Reinforcement Learning Quadcopter)
มุมมอง 29Kปีที่แล้ว
Teaching a Reinforcement Learning agent to pilot a quadcopter and navigate waypoints using careful environment shaping. GitHub Repo github.com/AlexandreSajus/Quadcopter-AI 0:00 Intro 0:22 Physics 1:08 Control Theory 2:04 Reinforcement Learning 3:45 Training 4:13 Results 4:46 Conclusion
Making Water in Unity (Unity 2D SPH Fluid Simulation)
มุมมอง 15Kปีที่แล้ว
Making a 2D Fluid Simulation in Unity with barely any knowledge about C# or Fluid Physics GitHub Repo github.com/AlexandreSajus/Unity-Fluid-Simulation Python Version github.com/AlexandreSajus/Python-Fluid-Simulation Brandon Pelfrey's Blog web.archive.org/web/20090722233436/blog.brandonpelfrey.com/?p=303 Code Monkey's Liquid Shader Tutorial th-cam.com/video/_8v4DRhHu2g/w-d-xo.html 0:00 Intro 0:3...

ความคิดเห็น

  • @daryladhityahenry
    @daryladhityahenry 7 วันที่ผ่านมา

    Wow nice!! I notice the walk is much better than almost other that I could find. Are you using imitation learning for that? Or pure reward n punishment? If it's pure reinforcement learning, I wonder how you can achieve quite great walking motion. Great vid!!!

    • @alexandresajus
      @alexandresajus 7 วันที่ผ่านมา

      Thanks! It's just reward and punishment here. The walk comes as default when you use the Walker agent from MLAgents in Unity, so it is a good starting point.

    • @daryladhityahenry
      @daryladhityahenry 7 วันที่ผ่านมา

      @@alexandresajus I see.. Thanks for the info :). Love seeing things like this :D

  • @JanikJanesch
    @JanikJanesch 15 วันที่ผ่านมา

    Do you know why thee is an error that it says i inly have 12 xaracters left but my request needs 42 caracters? even tho i have 20$ account balance on chatgpt.

  • @mr2tot
    @mr2tot 20 วันที่ผ่านมา

    Great work :D

  • @AdeniranFrancis
    @AdeniranFrancis 27 วันที่ผ่านมา

    whenever i see videos like these, i clone the repos and i am never, ever able to successfully install all the dependencies or requirements.txt. makes me want to give up writing code altogether.

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

    I am stuck at git clone

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

    I have always had a question about mlagents: they randomly select actions at the beginning of training. Can we incorporate human intervention into the training process of mlagents to make them train faster? Is there a corresponding method in mlagents? Looking forward to your answer.

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

      Excellent question. What is commonly done to choose human actions instead of random ones at the beginning of training is called "Imitation learning." MLAgents does provide documentation on imitation learning, but I have never explored it, and it is probably complex to implement: github.com/gzrjzcx/ML-agents/blob/master/docs/Training-Imitation-Learning.md

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

      @@alexandresajus Thank you very much for your answer. I have looked at the link you sent and found that it is an old version of mlagents, which is different from multiple settings. For example, the new version does not have Brain and Academy's Broadcast Hub. So, what should we do in the new version? Thank you for your answer!

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

      @@keyhaven8151 To be honest, I don’t know since I never tried imitation learning. Try to look up « imitation learning mlagents » online, I’m sure there are tutorials. Or use the older version of MLAgents

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

      @@alexandresajus Thank you very much for your answer. I will try to find a solution! thank you!

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

    Good Idea but Eleven Labs is to expensive, the price is more then horrible for live tts… better you use the build in OpenAi tts. Also you can use the openai api whisper, assistant gpt and tts… all with easy tts. Quick cheap and easy

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

    Will That generate Costs throught the API or is that for free?

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

    Hey, Absolutely great project, Can you share the dataset too?

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

      Sure! It's available here: www.kaggle.com/datasets/alexandresajus/arma3cvdataset

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

    dose noone get same code on deepgram me and zou dont got same code

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

    Great video, really glad to see you getting up there and the debrief! Ive thought about this for years, still on my bucket list

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

    hello i have a problem when i try to run main.py it shows me no moduel deepgram found

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

    How'd those G's feel? I'd love to experience G-Lock, but I have bad vision and don't make enough.

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

      Unfortunately (or fortunately 😅) no G-Lock, we pulled a max of 5 to 8 Gs but I think we did not sustain them long enough to experience G-Lock or even tunnel vision. The main effect was task saturation: I just could not think about anything apart from looking at bandit and flight controls

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

    Now I'm wondering how we're ww1 and ww2 pilots pulled it off, despite being in a plane that only relied on guns and prayers

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

    That's a valuable insight. Thank you! I think if you were flying more PvP in DCS, you would have done slightly better, but still both the physical and mental of the real fight makes a difference.

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

      Yes, I think so as well. I have started doing some 1v1 PvP dogfights with more experienced people in DCS. In hindsight, my understanding of one-circle, two-circle, turn radius, and turn performance was lacking. I wish I had gone into this experience with a better understanding of fight flows.

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

    In your defense, youre probably used to flying the dcs fa18c with jhmcs on, enabling you to always keep training your eyes on the bandit, while also providing you with your speed, altitude, etc instrument data. Your muscle memory took over and you did what you know. Important to check your upfront instrument panels when you dont have jhmcs 😊 would love to try this myself!! Great job!

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

      Yes, that was definitely part of the issue. Being able to stay tally while having both speed and alt in the corner of your eye dramatically helps with energy management. I noticed the difference when going back into DCS

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

    I wanna see operator drewski do this.

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

    no attacks from above?! wth?

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

      So no attacks from above the 3 to 9 line which means no attacks face to face which is understandable because there is a risk of collision if we do that

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

    Salut, tu as AirCombatExperience pas très loin de Bordeaux, aussi cool et vachement moins chère.

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

      Pas mal ça, je connaissais pas, merci pour le partage! En plus j’étais à Bordeaux la semaine dernière

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

    looks really fun

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

    "I have no idea how this is legal" god bless America, i am so glad it is

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

      GOD BLESS OUR TROOPS, GOD BLESS AMERICA 🦅🦅🦅🦅🦅🦅

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

    when i run python main.py . i get this error Traceback (most recent call last): File "E:\JARVIS_TEST\JARVIS\main.py", line 15, in <module> from record import speech_to_text File "E:\JARVIS_TEST\JARVIS ecord.py", line 8, in <module> from rhasspysilence import WebRtcVadRecorder, VoiceCommand, VoiceCommandResult ModuleNotFoundError: No module named 'rhasspysilence'

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

      Check this issue: github.com/AlexandreSajus/JARVIS/issues/4 Also try creating a new clean virtual env before installing requirements. Check if there are no errors during installation. Check that you are running main.py from that env. Check that rhasspysilence is installed with pip list

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

    hope you guys wont collide with each other , cuz that tends to happened sometimes in dcs

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

    what exactly did u purchase on the open ai api thingy for it not to return "exceeded current quota"? i payed for chat gpt "hobbyist" plan and thought that would help but nah i wasted 20 $. and u should def start a discord good stuff

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

      Ah I see, you’re not supposed to pay a chatgpt subscription. OpenAI have a website for their API where you just have to enter billing details and maybe add a dollar of credit to use. They charge per request and not on a subscription basis. It should be on the same site where you got your API key

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

      @@alexandresajus AH MY HERO SO FAST, so i just add some money to my account and boom it works?

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

    Aerobatic planes are incredible machines, possibly the most maneuverable machines on earth, using them for irl dogfight is a neat idea

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

    Mr moneybags

  • @ujj-1225
    @ujj-1225 2 หลายเดือนก่อน

    DAMNNNNNN ALEX! I literally had no idea this type of this was legal. I definitely want to give this a try man

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

    C'est incroyable bro, faut absolument que j'essaye un de ces jours !

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

    how do you know if shots hit or not

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

      Here, the instructors validated shots visually. If we were in the opponent’s control zone with the opponent on our nose, it was considered a kill

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

    SBMM is crazy bruh

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

    Sweet! I did PPL training after 20 years of sims, and yeah... I thought I knew "task saturation", but when your whole primate body is spamming events it's another thing.

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

    Man this looks like a ton of fun as someone who picked up war thunder seriously in 2042 (I tried in 2019 on console and got destroyed) and playing the fighter ace and Jane’s combat simulation games, it has all reignited my spark for aviation and dog fighting lol

    • @ulli-dulli333
      @ulli-dulli333 2 หลายเดือนก่อน

      Shit man you from the future??

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

      @@ulli-dulli333 yes hellos I fly the f24 raptor

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

    great video. sky combat ace is an amazing experience and they've been doing it for many many years.

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

    This is awesome man!

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

    when a jet sim player uses a prop plane

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

    5x at theaters $75. VR,$800, $800hotas, and f18 80$. trip plus ...must be nice to have lots of extra money.. living the dream...ive always wonder how well my sim training would actually translate

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

    this is such a cool video

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

    Bro I wanaa see growling sidewinder do this 🤔

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

    Wow you actually fulfilled your dream unlike most of the TopGun fanboys. Maybe you should consider getting your license. Good for you 👍

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

    Thanks for the shout out, loved the video!

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

      Thanks, and thank you for your videos! They are very instructive!

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

    "You exceeded your current quota, please check your plan and billing details" its showing something like this and jarvis is not replying after an error

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

      You've exceeded your free quota on one of the APIs, check on which function call this error gets triggered to see which API needs billing

  • @user-eg6tt4gy9n
    @user-eg6tt4gy9n 2 หลายเดือนก่อน

    Imagine what will happen if you dogfight with Growling Sidewinder in real life 😂

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

      Don’t give GS a F16 lol

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

      ​@@JustABalrogan Extra300 will be more than enough 😂

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

    Amazing stuff, kinda reminds me my first track run after years of sim racing, I almost throw out. You did a great job not even lost consciousness there!

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

      Haha, I should definitely try that next!

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

      not enough g forces to lose conciousness?

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

      @@pazsion Yeah, max g was around 5 to 8 but it was not sustained long enough to cause tunnel vision or g loc

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

    Nice video

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

    Dude, what a great video! You deserve more views and subs!

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

    Hey Alex! Thanks a lot for the video, can you please explain a good way to create a neat requirements.txt file after I'm done with a project?

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

      Sure! Use « pip list » in terminal to check which package versions you are using. Then create a requirements.txt at the root of your project with on each line « package_name==version » for only the packages you import within the code (not their dependencies)

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

    I would LOVE to try this!! One day im taking a flight to the US and doing this!!

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

    Me after seal clubbing a War Thunder arcade lobby: I’m ready for the real deal now.

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

      Haha you can definitely try. I already get killed in Air RB so I had low expectations

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

      @@alexandresajus air RB is easy and I excelled in war thunder so much that I went to DCS. I got pretty deadly in the 16 and 15c inPvP so I went to the Viggen and used it as a fighter in a PvP role as well. That thing is super deadly if you know what you're doing. If you maintain your speed it will delete 21's and I've even managed to out fight player 18's at the merge easily which is awesome and unexpected by them which makes them overconfident and gets them killed. If I made more money I would try this as well but props are a lot different than jets although I only liked props in war thunder which isn't nearly as realistic as DCS but at least you can learn basics there. It looks like you had fun and maybe next time I'm in Nevada I'll take a look at this and see if it's in my budget to go once

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

      ​@@deekamikaze it's like if you're good at war thunder sim/rb in this case you CAN be good at DCS; seeming as sim focuses on the barebones flight basics. But not the other way around, considering real war is more complicated than who slings 27ERs first

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

      @@belgianfried so basically war thunder is more fun for props imo and DCS is more fun for jets and helos since dcs really focuses on the realism. Viggen is #1 for me in DCS and I'm kind of cocky with it because I'm rather good with the viper so I'm taking a break from it to try to get good with the other modules I want to focus on

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

      Attack the D point!

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

    the physical exertion is p crazy w/ everything u have to percieve I can't even imagine. I didn't do anything as cool as you but when i was doing emergency decent procedure my instructor was showing me a new way to do it and it made really motion sick since i wasn't ready for what it looked like, and then my entire flight was off after that, i was always behind hte aircraft. Good lesson i learned that flight was gathering myself but even know i'm not quite sure how to do that. Super awesome you had this experience its so cool!

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

      Thanks! Gathering yourself right before is a good tip. I actually asked the guys there how they managed to do this the whole day without getting nauseous, and they said that since they expect what's about to happen right before it happens, it does not have that much of an effect on them anymore.

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

      But yeah, the exertion was crazy. I had to lie down nauseous for the next three hours after that haha, also my legs were tired for no reason

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

      @@alexandresajus thanks for the tip, i'll keep it in mind! Esp when i start going for my acrobatics endorsement X_X

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

      @@michelchaman6495 Let’s go! Have fun!

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

    How did you feel about having too look down near your legs too get your speed and alt. I noticed you didn't look at it much, understandably so.

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

      Mid fight it was impossible to get a read. I was too focused staying Tally. Even when I looked, I only had a second and my brain was so out of it that I could not use the information. We actually discussed this with my instructor and he said that you’re not supposed to read speed and alt. For him, it’s so second nature that he has a good estimate of both at all times.

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

      @@alexandresajus wow man that's crazy, but that is what time and practice brings. Thanks for replying bro that was cool AFFF

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

      @@jaype331 Haha thanks!