AI & Robots - Devlog 03
1:19:42
Жыл бұрын
AI & Robots - Devlog 02
55:09
Жыл бұрын
AI & Robots - Devlog 01
1:02:25
Жыл бұрын
AI Learns to Build a Christmas Tree
11:24
Пікірлер
@phuchoanghuu7577
@phuchoanghuu7577 18 күн бұрын
Could you provide the source code for this paper ?
@silver-wp7ky
@silver-wp7ky 26 күн бұрын
thank you
@Cod3inkpurple
@Cod3inkpurple 27 күн бұрын
That's great. Thank you very much. It's so clear and relaxing! Good job Guy's !!!
@Zeroflex-fk3xc
@Zeroflex-fk3xc Ай бұрын
At the player controller on the script at line 45 this.grounded); did you change this too ................... at line 45 |this.grounded); ? tell me cause it's hard to see this what it is ??
@AnanyaGandhi1803
@AnanyaGandhi1803 Ай бұрын
What is being done here exactly? Where is marl being used?
@AnanyaGandhi1803
@AnanyaGandhi1803 Ай бұрын
I don't understand, please, how the wildfire is being managed?
@Hr_Status
@Hr_Status Ай бұрын
using System.Collections; using System.Collections.Generic; using UnityEngine; public class PlayerControl : MonoBehaviour { public Animator anim; private Rigidbody rb; public LayerMask layerMask; public bool grounded; // Start is called before the first frame update void Start() { this.rb = GetComponent<Rigidbody>(); } // Update is called once per frame private void FixedUpdate() { Grounded(); Move(); Jump(); } private void Jump() { if (Input.GetKeyDown(KeyCode.Space) && this.grounded) { this.rb.AddForce(Vector3.up * 4, ForceMode.Impulse); } } private void Grounded() { if (Physics.CheckSphere(this.transform.position + Vector3.down, 0.2f, layerMask)) { this.grounded = true; } else { this.grounded = false; } this.anim.SetBool("jump", this.grounded); } private void Move() { float verticalAxis = Input.GetAxis("Vertical"); float horizontalAxis = Input.GetAxis("Horizontal"); Vector3 movement = this.transform.forward * verticalAxis + this.transform.right * horizontalAxis; movement.Normalize(); this.transform.position += movement * 0.04f; this.anim.SetFloat("vertical",verticalAxis); this.anim.SetFloat("horizontal",horizontalAxis); } }
@MadStar3k
@MadStar3k Ай бұрын
Ich hatte eigentlich erwartet, dass ein Lösungsweg gezeigt wird bei dem man den Jupiter Server einbindet
@devwrattamrakar
@devwrattamrakar Ай бұрын
Thanks a lot
@loveserveascend
@loveserveascend 2 ай бұрын
Amazing thank you 💚✨
@velierengogebakan3352
@velierengogebakan3352 2 ай бұрын
this is best education for ml
@snakeywakey4109
@snakeywakey4109 2 ай бұрын
Hello! I have an AMD gpu, is there any way to utilize it for mlagents? cuda is NVIDIA only.
@keyhaven8151
@keyhaven8151 3 ай бұрын
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.
@SignalYT24
@SignalYT24 Ай бұрын
you are from unitycodemonkey?
@raheemaslam6748
@raheemaslam6748 4 ай бұрын
Thanks Bro, you saved a lot of time.
@matthewalexander862
@matthewalexander862 4 ай бұрын
Hey, I think you have skipped some steps. The environment variables must be set up for conda and python if you want them to work on CMD otherwise it does not. I am very surprised that you've gotten an error when you used the anaconda interpreter (the base environment) since that is the place where you have the environment variables for conda and python. P.S. I think this is the main reason why you have so many dislikes on this video
@dirt5506
@dirt5506 4 ай бұрын
Thanks, greetings from Russia
@storiesfromthedarkness3631
@storiesfromthedarkness3631 4 ай бұрын
mlagents-learn config/ppo/PushBlock.yaml --run-id="testing_pushblock" When i run this command the prompt says:'mlagents-learn' is not recognized as an internal or external command, operable program or batch file. What shall i do?
@charlesAcmen
@charlesAcmen 4 ай бұрын
i have a question,how can i choose whether cpu training or gpu training?if i have cuda installed?
@charlesAcmen
@charlesAcmen 4 ай бұрын
omg,i watched your last video for 2022,had trouble and end up with errors,now after this i addressed it!THank you my bro
@charlesAcmen
@charlesAcmen 5 ай бұрын
maybe you wont notice this comment,but i have to persist to say thank you bro,i successfully configured my mlagents env,but unfortunately due to new edition of unity or something else,i cant address all the errors mentioned in the console,but yeah,thank you again!
@shivangipriya4153
@shivangipriya4153 5 ай бұрын
hi man, Can make a video for character FBX has a face to VRM using unity
@gireeswar18
@gireeswar18 5 ай бұрын
Bro you are a life saver ❤
@ExistentialGojora
@ExistentialGojora 6 ай бұрын
Love you to death, bro. But you have to speak clearly and don't mumble during the mundane parts. Your mic is picking up the room and your clickty keyboard louder than your voice. Looking forward to more projects.
@dwaipayandas7763
@dwaipayandas7763 6 ай бұрын
Hey one question, how did you get the VS Code launch option in your Anaconda Navigator. Was VS code preinstalled in your system?
@peaceandlovenz
@peaceandlovenz 4 ай бұрын
This is exactly what I’m after too. Have you been successful?
@TieuLongLafrance-zq6ew
@TieuLongLafrance-zq6ew 6 ай бұрын
where do we can find your code?
@leoh2502
@leoh2502 6 ай бұрын
This is a perfect installation video, showing every possible caveat! Thank you!
@nastaranebrahimi6486
@nastaranebrahimi6486 6 ай бұрын
this was an amazing video
@romanstirskyi
@romanstirskyi 7 ай бұрын
Hi Please tell me this is a normal answer? I can't do it like You: pylint-venv pypi_0 pypi (base) C:\Users\one>conda env list # conda environments: # base * C:\Users\one\anaconda3 (base) C:\Users\one>conda list env # packages in environment at C:\Users\one\anaconda3: # # Name Version Build Channel pylint-venv 2.3.0 py311haa95532_0 python-dotenv 0.21.0 py311haa95532_0 Thank You for the help
@sanjuhyacinth
@sanjuhyacinth 4 ай бұрын
I guess this is normal. I got the same thing yet I was able to execute all that he did
@DieterSoost
@DieterSoost 7 ай бұрын
Nice work, simpel and effective, but... The Character do not move forward, after Animation he fall back to start position... any idea of that ? Btw: Runs under 2022.3
@RapidRealityRJC
@RapidRealityRJC 6 ай бұрын
when you download the animation you need to tick 'In Place'
@AlMgAgape
@AlMgAgape 7 ай бұрын
please make tutorial for release 21
@TrippleXD545
@TrippleXD545 7 ай бұрын
but like, what problem does this solve? cant you just put a fin on a turbine and use analog to turn the turbine to match the fin? this seems so overkill
@johantchassem1553
@johantchassem1553 8 ай бұрын
I still have an error after installing the correct version of protobuf . It says: File "<frozen runpy>", line 198, in _run_module_as_main File "<frozen runpy>", line 88, in _run_code
@Siuuu-gy8ro
@Siuuu-gy8ro 5 ай бұрын
my teacher told us to run this command "pip install protobuf==3.20.*". Idk if works tho, I am also having issues
@malikkhan4823
@malikkhan4823 8 ай бұрын
Anaconda comes with many modules related to data science. Is there any way i can use conda modules in vs code or i have to download modules for vs code seperately?
@mayssayasmina2072
@mayssayasmina2072 8 ай бұрын
Looks great, how we can reproduct it? Please
@goldenglowmaster8510
@goldenglowmaster8510 8 ай бұрын
How would you install and train sac instead of ppo
@ryato6472
@ryato6472 8 ай бұрын
did you know why the preview of the "game" is under 15FPS? i have a RTX3050 i don't understand
@JohnnySix
@JohnnySix 8 ай бұрын
Really handy tutorial, this was the first one I've seen that actually helps make sense of some of the animator controls.
@IamNeighborlee
@IamNeighborlee 8 ай бұрын
Does this work for newest unity 2022.3 ? This is the simplest , easiest to follow I've seen.
@android_dreaming_of_sheep
@android_dreaming_of_sheep 8 ай бұрын
HOW DO I MAKE THIS?
@SahanRajapaksha-pr2ms
@SahanRajapaksha-pr2ms 9 ай бұрын
I have wasted one whole f***ing day until i found your tutorial.Thanks a lot brother 🥰
@iclickedonce1537
@iclickedonce1537 8 ай бұрын
How did you succed, I've been trying for like a week. I keep getting different Numpy errors (on MLAgents 21) where the right Numpy version can't build wheels and using another version can't train
@cem_kaya
@cem_kaya 9 ай бұрын
For future use of 20: (python 3.9) conda install pytorch==1.8.0 torchvision==0.9.0 torchaudio==0.8.0 cudatoolkit=11.1 -c pytorch -c conda-forge
@marktekk4982
@marktekk4982 9 ай бұрын
why did you install vs code separately when it's already integrated into anaconda by default ?
@peaceandlovenz
@peaceandlovenz 4 ай бұрын
When I installed anaconda it did not come with vs integration. This is what I’m searching for, a way to install it to my anaconda navigator…
@dehkos4490
@dehkos4490 9 ай бұрын
THANK YOU SO FUCKING MUCH
@PhilippDominicSiedler
@PhilippDominicSiedler 9 ай бұрын
LOL
@ricksarkar1
@ricksarkar1 9 ай бұрын
thank you bro i love you
@HaiPCs
@HaiPCs 9 ай бұрын
can anyone help, it keeps giving me the following error: TypeError: CCompiler_spawn() got an unexpected keyword argument 'env' [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for numpy Failed to build numpy ERROR: Could not build wheels for numpy, which is required to install pyproject.toml-based projects
@LOGANX07
@LOGANX07 9 ай бұрын
did u fix it ? i have the same
@psychedeliccoffee2737
@psychedeliccoffee2737 9 ай бұрын
I fixed it by going into the ml-agents/ml-agents-envs/setup.py and changing "numpy==1.21.2" to "numpy==1.21.3"
@Bochnik_Loaf
@Bochnik_Loaf 9 ай бұрын
​@@psychedeliccoffee2737this worked for me, thank you~❤
@ThevonMusic
@ThevonMusic 8 ай бұрын
@@psychedeliccoffee2737 huge thumbs up to you
@sammyakgadekar9651
@sammyakgadekar9651 7 ай бұрын
@@psychedeliccoffee2737 Thank you so much!!!!!! THIS WORKED 😭😭😭
@calalmuradov6162
@calalmuradov6162 10 ай бұрын
ERROR: Could not build wheels for numpy, which is required to install pyproject.toml-based projects ( How can i Fix it?
@calalmuradov6162
@calalmuradov6162 10 ай бұрын
I cannot make it it is writing me that clone is exist and I don't know how to return it
@PhilippDominicSiedler
@PhilippDominicSiedler 9 ай бұрын
I don't know what you mean
@sublajz8432
@sublajz8432 10 ай бұрын
Hello, this looks absolutely great! Is this part of course?
@GABRIELKENNETHWESLEYWALLACE
@GABRIELKENNETHWESLEYWALLACE 10 ай бұрын
can you help me why when i want to do this mlagents-learn --help its says "module not found error: no module named 'packaging' maybe you can help me, thanks
@PhilippDominicSiedler
@PhilippDominicSiedler 9 ай бұрын
that means that it is not installed correctly. you might have to try again without any further info on your problem
@kevinschantalle
@kevinschantalle 10 ай бұрын
nonsense fake video