i got so fuxking fat studying ai amd coding stuff these past months
>>84976973Really? You want to try answering a few questions without AI to see the fruits of your studying?
>>84976981sure gimme some
>>84976981Retard he is making the AI not slopifying his brain with it Also anon I think you look good and I mean it :)
>>84976998making the ai
>>84976973You have a good philtrum mid face and eye spacing you are not ugly your weight is reversible and it is because of a grind for your studies and I respect that more than your body weight
>>849769851.What is the difference between stack and heap2.What is the difference between process and thread3.What is a mutex and how is it different from a semaphore 4.What is a race condition and how does it happen 5.What is a deadlock and what conditions cause it6.What is a system call and why is it needed 7.What is virtual memory and why does it exist8.What is a page fault 9.What is cache locality and why does it matter10.What is a memory barrier and what problem does it solve
>>84976998If he didn't study actually useful programming I've cooked up some shitty AI questions for him too. Shouldn't be hard to answer if he spent months and sacrificed his health for it.1.What is a sigmoid function?2.What is a loss function?3.What is gradient descent and what is it doing step by step?4.What is backpropagation and why is it needed?5.What causes overfitting?6.What is regularization and how does it change training?7.What is an embedding and why is it better than raw inputs?8.What is self-attention and what is it comparing?9.What is a transformer and what makes it better than older models?10.What is tokenization and why does it matter?
>>84977005lol stop samefagging you weird fuck
>>84976973Yeah. That happens.
>>84977011these are actual machine learning questions i meant i was using ai to study i was learning python lol i can answer some thoughstack is memory which gets added to or read from one side heap has memory addressesa process is a program on a cpu and a thread is a program on a core of a cpuidk what a mutex or a semaphore isa error due to async of two threads on different coresa error due to one thread needing another thread to resolve which also needs that thread to resolvea program which is calling the operating system functions for something like reading files or working with hardware or permissionsi think that is like swap which uses ssd for memoryi dont know what a page fault isdunno cache locality or memory barrier either these were very systems oriented questionsthese next ones are just machine learningi think sigmoid is a sum but im not sureloss function describes how to adjust the weights of a neural network on responses against data high loss means the neural network is less accurate in different nodesgradient decent finds the difference in loss of different nodes and by descending through loss the model becomes more accurrate idk the steps thobackpropagation is used for the learning of a neural network since it uses the loss function over all nodes based on the training resultsoverfitting is when the model is being trained on a set of test data and improving but becoming worse at other data on the sampleidk the last five