/robowaifu/ - DIY Robot Wives

Advancing robotics to a point where anime catgrill meidos in tiny miniskirts are a reality!

We are back again (again).

Our TOR hidden service has been restored.

Max message length: 6144

Drag files to upload or
click here to select them

Maximum 5 files / Maximum size: 20.00 MB

More

(used to delete files and postings)


“We can do anything we want to do if we stick to it long enough.” -t. Helen Keller


ROBOWAIFU U Robowaifu Technician 09/15/2019 (Sun) 05:52:02 No.235
In this thread post links to books, videos, MOOCs, tutorials, forums, and general learning resources about creating robots (particularly humanoid robots), writing AI or other robotics related software, design or art software, electronics, makerspace training stuff or just about anything that's specifically an educational resource and also useful for anons learning how to build their own robowaifus. >tl;dr ITT we mek /robowaifu/ school.
Edited last time by Chobitsu on 05/11/2020 (Mon) 21:31:04.
>>19317 Thanks Anon, I'd looked into it in the past maybe it's time to look back into it again. Cheers.
Crosslink: >>18306 (Getting started with AI / DL ...)
Found this book to be a good introduction to robotics. Plus, guys look up the "A Manga Guide to -" series of mangas. A good intro to any maths or science field you're just entering.
Some nice scholarly robotics pages. https://scaron.info/robotics/
>>21404 Wow, these are great. Thanks!
An interesting class if you're curious about animation. https://www.khanacademy.org/computing/pixar
Stanford CS Library http://cslibrary.stanford.edu/
>>24224 Someone preserved the Blinky video. https://www.youtube.com/watch?v=i49_SNt4yfk
> ( NN / LLM training-related : >>26817, ...)
Learn yourself some magnet physics https://www.youtube.com/watch?v=OI_HFnNTfyU
New Mind is a great place to start to catch up on engineering concepts. https://www.youtube.com/@NewMind
Is uploading pdfs banned now? I'm trying to upload some books on robotics but it says connection failed everytime.
>>30563 I don't think so, how big are the files? There's an upper limit. It worked a few days ago.
>>30566 what is the upper limit?
>>30568 I think 20MB.
>>30569 oh that explains it. these books are pretty big at 80+ MBs
>>30569 oh that explains it. these books are pretty big at 80+ MBs
>>30575 You can upload them at catbox.moe and link here. Or make a MEGA account, but they would probably need to be encrypted or something to avoid their copyright scanners. Maybe don't use the same account you want to keep for other use cases, idk.
>>30896 missing the most useful part, newtons method for solving roots and way simpler to understand convergence this example made no sense like wtf man just draw the stupid ball on a curve and anyone will get it
>>30902 Do you know of any animations showing this method in a simplified way Anon? I can't read formulas very well yet, but I can folllow concepts if they are animated well.
Open file (617.22 KB 480x480 FUnLj-1138229482.gif)
Open file (48.85 KB 673x480 NewtonIteration_Ani.gif)
>>30903 its like you would expect, the closer you get to zero the smaller your delta gets so if you just take a guess and keep adding the change to your answer eventually you will just stop moving which is your root
>>30905 Ahh, got it. Thanks kindly, Anon. Cheers. :^)
>>30907 its also really simple to program if you want to play around with it, its how sqrt() is done when the cpu doesnt have a math chip void main() { float guess = 13; float ans = guess; // newtons method formula = x - f(x)/`f(x) // using f(x)= 3x^3 + 5x^2 - 3x - 2 // `f(x)= 9x^2 + 10x - 3 for ( int i=0; i<50; i++ ) { float fx = 3*(ans*ans*ans) + 5*(ans*ans) - 3*ans - 2; float dfx = 9*(ans*ans) + 18*ans - 3; float guess = ans - (fx / dfx); if ( guess == ans ) break; ans = guess; printf( "i=%d \t x=%f \n", i, ans ); } printf( "final answer = %f \n", ans ); } you only get a root though like this function has 3 but you have to play with the initial guess to get them otherwise you just get which evers closest, fun stuff
>>30908 Neat! I assume you'd add some type of Epsilon test (line #14) in for a working example, Anon? --- >also: I notice that the formula you reference in the comments (line #8), seems to be different than the code example (line #12) ? >note: for my line numbers, I'm using my own (re)formatted version of your code example. cf: https://trashchan.xyz/robowaifu/thread/26.html#27 >=== -add image hotlink -minor edit
Edited last time by Chobitsu on 04/14/2024 (Sun) 13:40:02.
>>30909 meant to be 10*ans not 18*ans my bad, good mistake to see how the method works though since you still center in one of the roots even though the derivative is wrong it just takes more iterations lots of things you can do to make it better of course just wanted to keep it simple
>>30910 Ahh, thanks. It's rather nice that the eminent Newton devised such a computationally-simple approach to this need. I'm sure with modern superscalar architectures, the solution would converge in very few clocks. Cheers. :^)
By far the best explanation of Quaternions I've ever seen. Based Anon-produced. https://www.youtube.com/watch?v=bKd2lPjl92c
>>32792 It is a shame he doesn't have a social media presence... from what I can tell the last anyone has heard of him is a 2016 documentary (I'll be glad to be proven wrong, though). Maybe too many trolls emailed him saying "robosapien suxxx lmao" or something.
>>33266 You're right, Mechnomancer. Mark Tilden really is a kind of genius IMHO. I sure hope he'd approve of our push to create life-sized robowaifus that go so far beyond his own, foundational, works. I think he would! :^)
Complex systems are best built using an incremental approach, assembled together from small, reliable parts. This author has made important theoretical contributions for this approach to systems construction. >John Gall - Systemantics: How Systems Work and Especially How They Fail https://libgen.rs/book/index.php?md5=27116A9E0EBB855AE580D3D7DB3238DE >John Gall - The systems bible: the beginner's guide to systems large and small: being the third edition of Systemantics https://libgen.rs/book/index.php?md5=69111DA8D35908A7B774863430AFB6C1
>>33550 >“A complex system that works is invariably found to have evolved from a simple system that worked. A complex system designed from scratch never works and cannot be patched up to make it work. You have to start over with a working simple system.” >related: https://en.wikipedia.org/wiki/John_Gall_(author)#Gall's_law https://blog.prototypr.io/galls-law-93c8ef8b651e https://nordicapis.com/what-is-galls-law-and-how-could-it-direct-api-design/ http://principles-wiki.net/principles:gall_s_law
Linguistics-focused wiki -- a topic of clear importance to us here on /robowaifu/ . http://glottopedia.org/index.php/Main_Page
> education-related : ( >>33905 )
Hundreds of different technical videos related to robotics engineering topics. >Medical robotics research laboratory at Carleton University - Laboratoire de recherche en robotique médicale chez Univeristé Carleton https://www.youtube.com/@biomechlab/playlists
I made a learning website before; this may help with learning programming for beginners. The programming lessons are in the "IT Computer Certification" section https://greertechuniversity.neocities.org/prolearn
This well-accomplished Frenchman seems oddly opposed to the GH's typical agendas regarding AI -- though he himself being deeply entrenched in the GH Big-Tech world. IMO, he may be the main reason that Zuckerberg released leaked LLaMA. Lots of interesting topics (+ criticisms of common LLM approaches being used today). Worth a look. http://yann.lecun.com/ <---> https://www.businessinsider.com/meta-ai-yann-lecun-deepseek-open-source-openai-2025-1 https://www.businessinsider.com/mark-zuckerberg-open-source-ai-platforms-future-competition-apple-llama-2024-9 >=== -add'l hotlinks -fmt, minor edit
Edited last time by Chobitsu on 02/15/2025 (Sat) 00:44:13.
>(electronics history -education -related : >>37097 )
> (Linux sysadmin, running automated backups -related : >>37419 ) >=== -patch crosslink
Edited last time by Chobitsu on 03/11/2025 (Tue) 01:09:59.
Everyone here has much to gain from watching this mans genius videos. https://www.youtube.com/watch?v=Wiy_eHdj8kg
>>38697 POTD Great find, Anon. Cheers. :^)
The journal Science has a Robotics periodical. https://www.science.org/journal/scirobotics
Collaborative Robots safety technical specification ISO/ts 15066 https://blog.robotiq.com/why-is-the-new-iso-standard-is-important-for-the-robotic-industry
These are helpful, thanks! :^)
Great video with a down to Earth explanation of foundational engineering concepts. https://www.youtube.com/watch?v=rRFgm_QSc74

Report/Delete/Moderation Forms
Delete
Report