大数据技术的基础技能包括什么(大数据技术的基础是什么)
496
2022-05-30
关于书中对应各章节的要点,稍晚些时候补充,这里先给出汤晓鸥教授和陈玉琨教授的一些点评,我个人读后收获非常大。
.参考:https://www.ithome.com/html/it/345470.htm
.参考:http://epaper.oeeee.com/epaper/H/html/2017-01/04/content_749.htm
文末附机器人学习能力矩阵,包括:小学、初中、高中、学士、硕士、博士。
补充知识和阅读材料:
--一份为高中生准备的机器学习与人工智能入门指南--
翻译版链接:https://blog.csdn.net/dqcfkyqdxym3f8rb0/article/details/79347385
英文原版:https://github.com/kjaisingh/high-school-guide-to-machine-learning
Being a high schooler myself and having studied Machine Learning and Artificial Intelligence for a year now, I believe that there fails to exist a learning path in this field for High School students. This is my attempt at creating one.
A guide for High School students to learning Machine Learning and Artificial Intelligence
Being a high schooler myself and having studied Machine Learning and Artificial Intelligence for a year now, I believe that there fails to exist a learning path in this field for High School students. This is my attempt to create one.
Over the past few months, I've tried to spend a couple of hours every day understanding this field, be it watching Youtube videos or undertaking projects. I've been guided by older peers who've had far more experience than me, and now feel that I have ample experience to share my insights.
All the information that I have compiled in this guide is intended for high schoolers wishing to excel in this up and coming field. It is intended to be followed chronologically, and unlike most guides/learning paths that I've come across, doesn't require an understanding of linear algebra, partial derivatives and other complex mathemathical concepts which one cannot find in their high school syllabuses.
If you work through this path on a regular basis, I believe that you could get to a pretty high level in about three months. However, this learning path does provide content that can keep you learning for the rest of your high school stay.
So, lets get to it.
1. Learning Python, which you will code your algorithms in.
I strongly suggest Python for this - not only is it extremely easy to learn, it supports pretty much any good library used in Machine Learning. While R is useful, I just find that Python in general is far more suitable for high school students. Besides basic programming, for Machine Learning in particular, the libraries that are most useful are Numpy, Pandas and Matplotlib.
For those of you who have never coded before, I suggest going to a course provided by the University of Toronto (one of the best universities for ML/AI right now). It will take you a few weeks, but its well worth your time - most of the knowledge you gain through this course can be applied to any other programming language, the only difference being the syntax. The course is free, and can be found at https://www.coursera.org/learn/learn-to-program?siteID=SAyYsTvLiGQ-rs4V8qoewjp3oL7Nr.r_Fw&utm_content=10&utm_medium=partners&utm_source=linkshare&utm_campaign=SAyYsTvLiGQ#
For those of you who have coding experience in a language besides Python, just skim through this tutorial for syntax - it won't take you more than a day: https://www.tutorialspoint.com/python/python_basic_syntax.htm
Now, after you've learnt the basics of Python, you need to understand the first two libraries I was talking about (Matplotlib can come later). Numpy arrays and Pandas are used for moving around and modifying the data you use, while Matplotlib is used to visualize this data through graphs and diagrams. The following courses together shouldn't take more than a couple of days:
Numpy: http://cs231n.github.io/python-numpy-tutorial/
Pandas: https://pandas.pydata.org/pandas-docs/stable/10min.html
Great! Now you should be set in the core programming needed to learn Machine Learning and Artificial Intelligence.
2. Getting into the basics of Machine Learning.
If there's one universal course for Machine Learning, it has to be Andrew Ng's course. This course is nothing short of brilliant, though for high school students, it may seem slightly challenging at times, as it refers to concepts such as partial derivatives (though these aren't required to understand the course). I found it beneficial to re-watch some lectures in Weeks 3 to 5 - it may be a bit fast the first time around.
I encourage everyone to go through this and take notes, though doing the programming-related tutorials and exercises is not needed, as its done in Matlab, which (in my experience) is often too tough for high schoolers to grasp. But don't worry, we will be doing the very same (and far more advanced) algorithms in Python in just a short amount of time.
The link to this free course is: https://www.coursera.org/learn/machine-learning
3. Learning an assortment of machine learning algorithms and understand how to implement them in real-world scenarios.
Now, understanding machine learning algorithms without the knowledge of university-level maths - this should be hard in theory, however, a team from Australia resolved this issue.
Kirill Eremenko and Hadelin de Ponteves - a pair from the SuperDataScience team - are absolutely fantastic at finding relevant ways to apply simple algorithms in real life. Furthermore, they go into a suitable amount of depth to understand the functionality of the algorithm, but without the complex mathics that a high school would not be able to understand.
Their course covers both Python and R, though you don't have to worry about R - simply go through the Python tutorials. Also, if you find that they are going a bit too slow, play this course at 1.25x speed (I did that and found it much better).
Their course is on Udemy, and is paid, though Udemy regularly has discounts of 90% or more on their courses. It can be found at https://www.udemy.com/machinelearning/learn/v4/overview, and is usually around .
It covers everything from basic regression algorithms to deep and convolutional neural networks. If you wish to explore even more advanced areas, their Deep Learning course is offered at the end of the Machine Learning for a 90% discount. However, concepts in this second course may be a little advanced and lack proper documentation, since they are so new.
If you're unwilling to pay for this course, you can check out Google's free Deep Learning course at https://www.udacity.com/course/deep-learning--ud730 or University of Michigan's free course at https://www.coursera.org/learn/python-machine-learning. However, these are far from as well-rounded as the SuperDataScience team's courses.
For these courses, taking notes aren't a necessity - there are tons of 'algorithm cheat sheets' online, which offer a quick intution on how they work. This website (https://www.analyticsvidhya.com/blog/2017/02/top-28-cheat-sheets-for-machine-learning-data-science-probability-sql-big-data/) lists a few.
4. Explore, explore and explore.
Now, you've covered a wide range of machine learning concepts, and have learnt a vast amount of skills. Its time for you to independently use these on basic projects. I'd suggest going to Kaggle (https://www.kaggle.com/) or the UCI Machine Learning repository (http://archive.ics.uci.edu/ml/datasets.html), finding a dataset you have an interest in, and simply modelling some solutions to these. Play around with different algorithms, and try to optimize performance.
Ensure that the datasets you use are simple and clean in nature - they shouldn't require too much pre-processing or modifying. Some easy dataset (off the top of my head) are the Iris, Wine, Breast Cancer Wisconsin, Autism Screening, Congress Voting, Handwritten Digits MNIST and Fashion MNIST ones.
If you ever come across a road block, Stack Overflow (https://stackoverflow.com/) is your best friend - they have an answer to almost any question that you'd have. If it doesn't, just post one - you should get replies within a couple of hours!
There's nothing much more I need to say here - when you find that you've become comfortable with the whole modelling process, feel free to move on!
5. Find an area of particular interest, and dive deeper.
Now you've got a great and broad understanding of all the basics. However, there's only a limit to what you can do with this. Thus, I suggest you find an area of interest in the broad field of Machine Learning, and look deeper into it. You probably won't have time to become experts in all of these in your high school tenure, but try and conquer one, if not two.
I'll list some possible areas, but before you begin one of these, understand what it is you're getting into. A simple Youtube search for a high-level explanation will give you all you need.
Computer Vision: Probably the hottest field in Machine Learning/AI right now - making computers see and understand things using a special type of neural network. Stanford publishes their course in this online (http://cs231n.stanford.edu/), with lectures, course notes and assignments available online. Go through this, though if the math is too complicated, don't worry - the course is simply to deepen your knowledge. Alternatively, you could look to OpenCV, a computer vision library that does a lot of the complex stuff for you. A great tutorial can be found at https://www.youtube.com/watch?v=Z78zbnLlPUA&list=PLQVvvaa0QuDdttJXlLtAJxJetJcqmqlQq. Once you're done with these, look at more advanced image datasets on Kaggle and UCI, or even enter Kaggle Competitions.
Natural Language Processing: Understanding how computers learn to speak is also a prominent topic today. Once again, Stanford offers a great course thats online (http://web.stanford.edu/class/cs224n/). If you don't understand some of the Math concepts, don't worry, just gain an understanding of how this field works. For implementations, you could undertake this Udemy course: https://www.udemy.com/data-science-natural-language-processing-in-python/. However, you could alternatively go through some of well-known Machine Learner Siraj Raval's videos (such as https://www.youtube.com/watch?v=9zhrxE5PQgY). One you've done these, try undertaking simple, well-known projects like building a chatbot, sentiment analysis or creating lyrics to a song - simple Youtube searches should help you out.
Reinforcement Learning: This domain focuses on how machines learn to act in a particular way, and its most popular application is in the field of video games. Siraj Raval again has a pretty good playlist on this (https://www.youtube.com/watch?v=i_McNBDP9Qs&list=PL2-dafEMk2A5FZ-MnPMpp3PBtZcINKwLA). David Silver's UCL course is great, though beginners may find it a bit tricky - http://www0.cs.ucl.ac.uk/staff/d.silver/web/Teaching.html. Once you're done with these, its pretty logical to just start downloading base projects from online, and adding an element of Artificial Intelligence to modify how the agents they act. Simple walkthroughs can again be found via a simple Youtube search.
Data Science: This field is a budding domain with tons of exciting job oppurtunities. I suggest undertaking either SuperDataScience's paid course (https://www.udemy.com/datascience/) or UC San Diego's Python-based free course (https://www.edx.org/course/python-data-science-uc-san-diegox-dse200x), though you should find a specific learning path for data science with a simple Google search. You must also learn SQL (https://www.khanacademy.org/computing/computer-programming/sql) as well as Matplotlib (https://www.youtube.com/watch?v=q7Bo_J8x_dw). The advantage in learning this at a student level is employability - I have friends in high school who've been offered data science internships, as the data gained from their work can instantly be monetized by companies. Its easy for companies to find a way to use a data scientist.
There are also areas like Representation Learning (used for recommendation systems), Adversial Networks (AI improving AI) and Genetic Algorithms (improving a solution to a problem in a way similar to natural evolution), but in my opinion, these are a stretch for most high school students. Do feel free to explore these if you have a particular passion for one of them, though they aren't as well covered as the other domains, largely due to the fact that they aren't currently monetized as much as the other fields.
BONUS (extremely important). Truly understand the field of Artificial Intelligence.
If you want to work in this field in the long run, its crucial to understand what it is about, groundbreaking discoveries and its implications on society. You should start doing things listed in this section as soon as you have the necessary understanding of how the technology works - I believe that this is after Section 4 of this learning path (as you start delving into an area of interest). This kind of information may not particularly help you when implementing algorithms, but its an impressive sign for universities or companies when their prospects are so knowledgeable in the field itself, rather than just the code.
There's a few things that a high schooler should do to deepen their general understanding of the field and make them more knowledgeable, which I'll list here:
Start reading research papers: They really aren't as challenging as they sound. A good portion of them can be almost completely comprehended with a high school Math level. If you ever come across one you don't understand, just put it down - theres more than enough alternatives. This link (https://www.kdnuggets.com/2017/04/top-20-papers-machine-learning.html) offers a host of great papers, though after you finish those, this (http://www.jmlr.org/papers/) offers the most up-to-date list - simply read ones you're interested in or related to your area of 'expertise' from section 5.
Listen to the pioneers: People like Andrew Ng, Ian Goodfellow and Yann LeCunn are regularly interviewed, and give the perspective of engineers of this field on the subject of AI. This Youtube channel (https://www.youtube.com/user/Maaaarth/videos) gathers the best of these talks, and compiles them into a central resource - watch one a night, and I guarantee that you'll feel like an expert within weeks.
Stay up-to-date with the field: Wired is one of the best platforms for anyone interested in tech. It publishes multiple AI-related stories every day, which can be found at https://www.wired.com/tag/artificial-intelligence/. Its simply a great way to understand the trends of the time. Alternatively, subsribe to TechCrunch's Facebook Messenger bot - it often has interested AI-related articles, and prompts you every day.
Understand the implications: There's no better way to do this than listening to TED talks. Their speakers are extremely knowledgeable in the field, and there is an increasing emphasis on AI in their speeches. A host of videos can be found at https://www.youtube.com/user/TEDtalksDirector/videos
The Philosophy: AI has its supporters and its opposers. The philosphy behind it, however, is intriguing. My favourite books that explore this area, and are suitable for High School students, include 'How to Create a Mind' by Ray Kurzweil and 'Life 3.0' by Max Tegmark (http://s3.amazonaws.com/arena-attachments/1446178/cffa5ebc74cee2b1edf58fa9a5bbcb1c.pdf?1511265314) - do try and read these.
Contributing: If you're the kind of person who likes to learn from others experience, check out the Artificial Intelligence & Deep Learning Facebook group. Alternatively, if you prefer conversations, check out Reddit's thread on AI at https://www.reddit.com/r/artificial/.
Delve into the math: Yes, you do need university level math skills, but if you're an extremeley strong math student, there's nothing stopping you from taking some online courses. This quora thread (https://www.quora.com/How-do-I-learn-mathematics-for-machine-learning) has some great resources that you should check out. 3Blue1Brown (https://www.youtube.com/channel/UCYO_jab_esuFRV4b17AJtAw/playlists) is a famous name in the community too, as his Youtube videos are fantastic for learning the maths behind some of these more complicated concepts.
Conclusion
I wish everyone the best of luck in undertaking this learning path. I've heard too many people say Machine Learning and Artificial Intelligence is too complicated to learn as a high school student to not write this - with a well-paved learning path, it can be done by anyone. Its just that due to the field being so new and generally thought of as a graduate field of study, theres a lack of one for high school students.
If anyone has additions, suggestions, queries or feedback, feel free to write to me @ kj.jaisingh@gmail.com.
--机器人方向--
MIT Zero Robotics中学计划:http://zerorobotics.mit.edu/ms/
--NASA机器人学矩阵--
涵盖了从幼儿园到博士的全部内容。五星推荐。https://robotics.nasa.gov/edu/matrix.php
----
Educational Robotics Matrix
Check back often as this list always continues to develop. If you have any suggestions for additional content, or to report broken links, please direct your e-mail to arc-rap@mail.nasa.gov
Interested in how the National Science Education Standards relate to robotics?
Find out at BotBalls' Website!
Find National Standards for the following subjects:
Math, Science, Engineering, Technology (ITEEA and ISTE), Language Arts, Social Studies
--具体内容如下--
Curriculum
Competitions
Internships
K to 5th
Squeakland
Let younger children try their hand at programming.
+ More information
ImagiBotics
Robotics classroom activities, articles, and interviews at Imagiverse
+ More information
Pre-K-12 Engineering
Standards-aligned engineering activities for grades Pre-K to 12th Grade.
+ More information
Make Your Own Rover
Eleven activities designed to help students learn about robotics.
+ More information
Classroom Robotics on the Web
Lessons, materials, and rubrics developed in a Texas classroom using RoboLab.
+ More information
Imagine Mars
Students explore their own community and decide which arts, scientific and cultural elements will be important as they develop an ideal community on Mars.
+ More information
Build a Nanorover
Learn how to make your own balloon-powered nanorover!
+ More information
Robotics Activities
Design, build and program a real robot using sensors, controllers and actuators.
+ More information
Robotics Starter Kits for Educators
A guide to different robotics kits.
+ More information
RoboCupJunior
+ More information
Trinity Fire-Fighting Robot Contest
+ More information
FIRST® LEGO® League Junior
Designed to introduce STEM concepts to kids ages 6 to 10
+ More information
Robofest
Robofest is an annual autonomous robotics competition focusing on learning STEM for students in grades 5 - 12.
+ More information
FIRST® LEGO® League
Immerses kids in real-world science and technology challenges.
+ More information
Storming Robots
Storming Robots offers classes for those interested in participating in robotics competitions, robotics technology clubs, computer programming classes, etc.
+ More information
EARLY Robotics
Engineering And Robotics Learned Young (EARLY) is a program that exposes our youth to engineering. EARLY provides 7 to 12 year olds the opportunity to participate in a robotics competition every fall and spring.
+ More information
ID Tech Camps
+ More information
Space Camp
+ More information
6th to 8th
ImagiBotics
Robotics classroom activities, articles, and interviews at Imagiverse
+ More information
Pre-K-12 Engineering
Standards-aligned engineering activities for grades Pre-K to 12th Grade.
+ More information
Make Your Own Rover
Eleven activities designed to help students learn about robotics.
+ More information
Imagine Mars
Students explore their own community and decide which arts, scientific and cultural elements will be important as they develop an ideal community on Mars.
+ More information
Robotics Activities
Design, build and program a real robot using sensors, controllers and actuators.
+ More information
Robotics Starter Kits for Educators
A guide to different robotics kits.
+ More information
Robotics Academy Camp-on-a-Disk
+ More information
Botball and Computer Science Curriculum
Curricular materials to promote hands-on learning.
+ More information
Multi-unit Robotics Curriculum
Give students meaningful exercises that introduce or reinforce applied physics and mathematics concepts.
+ More information
BotBall
+ More information
RoboCupJunior
+ More information
Trinity Fire-Fighting Robot Contest
+ More information
Battlebots IQ
+ More information
Robofest
Robofest is an annual autonomous robotics competition focusing on learning STEM for students in grades 5 - 12.
+ More information
FIRST® LEGO® League
Immerses kids in real-world science and technology challenges.
+ More information
Storming Robots
Storming Robots offers classes for those interested in participating in robotics competitions, robotics technology clubs, computer programming classes, etc.
+ More information
ID Tech Camps
+ More information
Space Camp
+ More information
9th to 12th
Pre-K-12 Engineering
Standards-aligned engineering activities for grades Pre-K to 12th Grade.
+ More information
Robotics Starter Kits for Educators
A guide to different robotics kits.
+ More information
Robotics Academy Camp-on-a-Disk
+ More information
Botball and Computer Science Curriculum
Curricular materials to promote hands-on learning.
+ More information
Multi-unit Robotics Curriculum
Give students meaningful exercises that introduce or reinforce applied physics and mathematics concepts.
+ More information
IntelliBrain-Bot
Java-programmable educational robot.
+ More information
GEARS Educational Systems
Robotics platform with projects and suggested curriculum.
+ More information
Battlebots IQ
Educational lessons about robotics.
+ More information
Robotic Autonomy Activities
A series of exercises intended to explore principles of autonomous robotics.
+ More information
Robotics Programming
Simulate robotics missions and learning BASIC programming.
+ More information
Robotics Technology Curriculum
Select activities to suit the learner from elementary to advanced and manual robot control to computer program modes.
+ More information
Stamps in Class
Introduction to topics such as microcontrollers, analog and digital, and advanced robotics.
+ More information
EST Foundations
The EST Foundations curriculum is comprised of project based lesson plans to introduce students to engineering. Students will explore the new product development process, how marketing impacts engineering, and careers in engineering and science. There are eleven fully developed one-week modules.
+ More information
BotBall
+ More information
RoboCupJunior
+ More information
Trinity Fire-Fighting Robot Contest
+ More information
Battlebots IQ
+ More information
BEST Robotics
+ More information
FIRST® Robotics Competition
+ More information
Robofest
Robofest is an annual autonomous robotics competition focusing on learning STEM for students in grades 5 - 12.
+ More information
Storming Robots
Storming Robots offers classes for those interested in participating in robotics competitions, robotics technology clubs, computer programming classes, etc.
+ More information
FIRST® Tech Challenge
+ More information
VEX Robotics Competition
+ More information
NASA Student Opportunities
+ More information
ID Tech Camps
+ More information
Robotics Boot Camp
At San Jose City College
+ More information
NASA Summer High School Apprenticeship Research Program (SHARP)
+ More information
NASA MSFC Robotics Academy
+ More information
BA/BS
List of universities offering robotics programs
+ More information
Autonomous Multirobot Systems
Key issues and current research in autonomous multirobot systems.
+ More information
General Robotics Course
Overview of robotics in practice and research.
+ More information
CMU Undergraduate Minor in Robotics
Focus on robotics.
+ More information
Universities
Study and research programs in robotics.
+ More information
Trinity Fire-Fighting Robot Contest
+ More information
Battlebots IQ
+ More information
Collaborative Research Experience
For women in undergraduate computer science and engineering
+ More information
RoboCup
+ More information
VEX Robotics Competition
+ More information
NASA Student Opportunities
+ More information
NASA Jobs
+ More information
Storming Robots Internship
+ More information
iD Tech Camps Jobs
+ More information
NASA MSFC Robotics Academy
+ More information
MA/MS
List of universities offering robotics programs
+ More information
Autonomous Multirobot Systems
Key issues and current research in autonomous multirobot systems.
+ More information
General Robotics Course
Overview of robotics in practice and research.
+ More information
Carnegie Mellon University Robotics Institute
Graduate education in robotics.
+ More information
Universities
Study and research programs in robotics.
+ More information
Trinity Fire-Fighting Robot Contest
+ More information
RoboCup
+ More information
NASA Student Opportunities
+ More information
NASA Jobs
+ More information
Planetary Science Summer School
+ More information
Ph.D
List of universities offering robotics programs
+ More information
Autonomous Multirobot Systems
Key issues and current research in autonomous multirobot systems.
+ More information
General Robotics Course
Overview of robotics in practice and research.
+ More information
Carnegie Mellon University Robotics Institute
Graduate education in robotics.
+ More information
Universities
Study and research programs in robotics.
+ More information
Trinity Fire-Fighting Robot Contest
+ More information
RoboCup
+ More information
NASA Student Opportunities
+ More information
NASA Jobs
+ More information
Planetary Science Summer School
+ More information
----
机器人世界与机器人操作系统(ROS):https://www.edx.org/course/hello-real-world-with-ros-robot-operating-system
你有兴趣采取机器人技术的第一步吗?你是否寻求切实可行的方法,并希望通过这样做来学习?加入我们的课程,学习如何使用ROS编写完整的真实世界机器人系统!
机器人操作系统(ROS)使您能够通过访问大量开源软件和工具来快速构建机器人应用程序。多年来,ROS已经成为机器人专家的必备工具。一个大型社区围绕着ROS,工业用户在这些工具的开发中已经有了大量的投入。
用于操纵,感知和导航的许多新的高级机器人功能都是使用ROS开发的。像空客和波音这样的公司正在使用ROS来处理他们的一些应用。代尔夫特理工大学的代尔夫特机器人系统团队在2016年亚马逊机器人挑战赛上赢得了两项挑战,其中使用ROS开发的机器人。
在本课程中,您将学习使用不同的ROS工具来创建一个完整的机器人应用程序。您将在基于物理学的仿真引擎Gazebo上使用您自己的独立Ubuntu-Linux安装以及工业和移动机器人。您将学习编程和配置基本的机器人任务,例如拾取和放置对象,并浏览障碍物。然后,您将整合所有这些知识,用两个机器人手臂和一个移动机器人构建工业生产线。
最好的最终项目将在代尔夫特的工业示范设施中的真实机器人上进行测试!
你准备好让你的机器人用ROS来向你的(真实)世界说“你好”吗?
本课程的课程资料属于代尔夫特理工大学版权所有,并根据知识共享署名 - 非商业性使用 - 相同方式(CC-BY-NC-SA)4.0国际许可证授权。
你会学到什么
如何使用ROS通信工具(主题,服务,动作)在功能模块之间交换信息
使用机器人可视化并创建自定义环境
机器人环境和导航与移动机器人的映射
如何用工业机器人手臂实现拾放功能
用状态机设计一个完整的机器人应用程序
课程纲要
----
稍后补充一些书籍资料pdf。
--机器人学习能力矩阵--
https://robotics.nasa.gov/edu/matrix.php
课程
比赛
实习
小学阶段
Squeakland
让年幼的孩子尝试编程。
+更多信息
Imagiverse
机器人课堂活动,文章和Imagiverse采访
+更多信息
Pre-K-12工程
标准调整工程活动适用于Pre-K至12年级的工程活动。
+更多信息
制作你自己的Rover
Eleven 11个旨在帮助学生学习机器人技术的活动。
+更多信息
Web上的教室机器人
使用RoboLab在德克萨斯州的教室中开发课程,材料和标记。
+更多信息
想象一下火星
学生探索自己的社区,并决定在火星上发展理想社区时,哪些艺术,科学和文化元素将变得重要。
+更多信息
建立一个Nanorover
学习如何使你自己的气球动力nanorover!
+更多信息
机器人活动
使用传感器,控制器和执行器设计,构建和编程一个真实的机器人。
+更多信息
RoboCupJunior
+更多信息
三位一体消防机器人大赛
+更多信息
FIRST®LEGO®League Junior
旨在将STEM概念引入6至10岁儿童
+更多信息
Robofest
Robofest是一个年度自主机器人竞赛,专注于为5 - 12年级的学生学习STEM。
+更多信息
FIRST® LEGO®联赛
沉浸在真实世界中的科学和技术挑战的孩子。
+更多信息
攻坚机器人
攻坚机器人为那些有兴趣参加机器人竞赛,机器人技术俱乐部,计算机编程课程等的人提供课程
+更多信息
EARLY Robotics
Engineering and Robotics Learned Young(EARLY)是一个让我们的年轻人接触工程的计划。EARLY提供7至12岁的孩子参加每年秋季和春季的机器人比赛的机会。
+更多信息
ID Tech Camps
+更多信息
空间营
+更多信息
初中阶段
Imagiverse
机器人课堂活动,文章和Imagiverse采访
+更多信息
Pre-K-12工程
标准调整工程活动适用于Pre-K至12年级的工程活动。
+更多信息
制作你自己的Rover
Eleven 11个旨在帮助学生学习机器人技术的活动。
+更多信息
想象一下火星
学生探索自己的社区,并决定在火星上发展理想社区时,哪些艺术,科学和文化元素将变得重要。
+更多信息
机器人活动
使用传感器,控制器和执行器设计,构建和编程一个真实的机器人。
+更多信息
机器人学院夏令营
+更多信息
Botball和计算机科学课程
提供实践学习的课程材料。
+更多信息
多单元机器人课程为
学生提供有意义的练习,介绍或强化应用的物理和数学概念。
+更多信息
BotBall
+更多信息
RoboCupJunior
+更多信息
三位一体消防机器人大赛
+更多信息
Battlebots IQ
+更多信息
Robofest
Robofest是一个年度自主机器人竞赛,专注于为5 - 12年级的学生学习STEM。
+更多信息
FIRST® LEGO®联赛
沉浸在真实世界中的科学和技术挑战的孩子。
+更多信息
攻坚机器人
攻坚机器人为那些有兴趣参加机器人竞赛,机器人技术俱乐部,计算机编程课程等的人提供课程
+更多信息
ID Tech Camps
+更多信息
空间营
+更多信息
高中阶段
Pre-K-12工程
标准调整工程活动适用于Pre-K至12年级的工程活动。
+更多信息
机器人学院夏令营
+更多信息
Botball和计算机科学课程
提供实践学习的课程材料。
+更多信息
多单元机器人课程为
学生提供有意义的练习,介绍或强化应用的物理和数学概念。
+更多信息
IntelliBrain-Bot
Java可编程教育机器人。
+更多信息
GEARS教育系统
带有项目和建议课程的机器人平台。
+更多信息
Battlebots IQ
关于机器人的教育课程。
+更多信息
机器人自主活动
旨在探索自主机器人原理的一系列练习。
+更多信息
机器人编程
模拟机器人任务和学习BASIC编程。
+更多信息
机器人技术课程
选择适合学习者从初级到高级和手动机器人控制到计算机程序模式的活动。
+更多信息
课堂上的邮票
介绍诸如微控制器,模拟和数字以及高级机器人等主题。
+更多信息
EST基础
EST基础课程包括基于项目的课程计划,向学生介绍工程。学生将探索新产品开发过程,营销如何影响工程,以及工程和科学职业。有11个完全开发的一周模块。
+更多信息
BotBall
+更多信息
RoboCupJunior
+更多信息
三位一体消防机器人大赛
+更多信息
Battlebots IQ
+更多信息
BEST Robotics
+更多信息
FIRST®机器人竞赛
+更多信息
Robofest
Robofest是一个年度自主机器人竞赛,专注于为5 - 12年级的学生学习STEM。
+更多信息
攻坚机器人
攻坚机器人为那些有兴趣参加机器人竞赛,机器人技术俱乐部,计算机编程课程等的人提供课程
+更多信息
FIRST®技术挑战
+更多信息
VEX机器人大赛
+更多信息
美国宇航局学生机会
+更多信息
ID Tech Camps
+更多信息
圣何塞城市学院机器人学新手训练营
+更多信息
美国宇航局夏季高中学徒研究计划(夏普)
+更多信息
美国宇航局MSFC机器人学院
+更多信息
学士本科阶段
提供机器人程序的大学列表
+更多信息
自主多机器人系统自主多机器人系统的
关键问题和当前研究。
+更多信息
一般机器人课程
机器人在实践和研究中的概述。
+更多信息
CMU机器人本科专业
重点研究机器人技术。
+更多信息
大学
机器人学习和研究项目。
+更多信息
三位一体消防机器人大赛
+更多信息
Battlebots IQ
+更多信息
合作研究经历
针对本科生计算机科学与工程专业的女生
+更多信息
RoboCup
+更多信息
VEX机器人大赛
+更多信息
美国宇航局学生机会
+更多信息
美国宇航局乔布斯
+更多信息
强攻机器人实习
+更多信息
iD Tech Camps Jobs
+更多信息
美国宇航局MSFC机器人学院
+更多信息
硕士研究生阶段
提供机器人程序的大学列表
+更多信息
自主多机器人系统自主多机器人系统的
关键问题和当前研究。
+更多信息
一般机器人课程
机器人在实践和研究中的概述。
+更多信息
卡内基梅隆大学机器人研究所机器人
研究生教育。
+更多信息
大学
机器人学习和研究项目。
+更多信息
三位一体消防机器人大赛
+更多信息
RoboCup
+更多信息
美国宇航局学生机会
+更多信息
美国宇航局乔布斯
+更多信息
行星科学暑期学校
+更多信息
博士研究生阶段
提供机器人程序的大学列表
+更多信息
自主多机器人系统自主多机器人系统的
关键问题和当前研究。
+更多信息
一般机器人课程
机器人在实践和研究中的概述。
+更多信息
卡内基梅隆大学机器人研究所机器人
研究生教育。
+更多信息
大学
机器人学习和研究项目。
+更多信息
三位一体消防机器人大赛
+更多信息
RoboCup
+更多信息
美国宇航局学生机会
+更多信息
美国宇航局乔布斯
+更多信息
行星科学暑期学校
+更多信息
----
5G教育 机器人
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。