Robo HiveRobo HiveRobo HiveRobo Hive
  • Home
  • RobotsIn this section you will find a wide range of popular Self Build & Ready Assembled Robotics products to suit everyone’s taste. Building a robot from a kit is the perfect foundation for any Robotics experience. In fact, when you build and assemble a robot kit, you learn about core STEM subjects, Science, Technology, Engineering and Mathematics. Robot kits are a lot of fun and make excellent educational gifts. For more advanced enthusiasts wanting to create their own robots from scratch, please visit our Robot Parts section.
  • Robot PartsDesigning a robot from scratch can be a very rewarding project, but can be a little overwhelming to the beginner robot builder. Chassis kits provide a good starting point to which you can add your choice of parts. Some platforms include wheels, motors and parts bundles. If you are creative, consider making your own base with the easy to use Sintra PVC boards. Perhaps design your own robot arm or a walking robot, using the large assortment of aluminium hardware brackets, rails and plates. Arm gripper kits and robot leg kits are available too. Our small electronic kits are ideal for beginners as an introduction to the techniques of soldering components and simple circuit boards. To power your robot, batteries are available in different types and sizes. Perhaps consider a solar powered robot? Solar panels are a great alternative and can be linked in series or parallel to increase voltage and current. Linking batteries in series increases voltage while linking in parallel increases the available current.
    • Batteries
    • Motors & Wheels
    • Sensors
    • Controllers
    • Radio
  • Robot AppsRobot Apps are used to control your robot and give your robots their intelligence. Some Apps allow you to generate pre-programmed movement sequences, others are used for remote control, and software development platforms are used to make more sophisticated autonomous control systems.
  • EducationActive Robots are embracing education. We have products to suit all abilities and needs, from Key Stage 1, Key Stage 2, Key Stage 3, Key Stage 4, through to University Level.Our aim is to encourage and develop technology in schools and cross curriculum learning. To promote the desire, to explore, stimulate the imagination and learn STEM subjects – Science, Technology, Engineering and Maths. Through a hands on engaging experience to encourage a whole range of interactive learning. To share ideas, investigation, observation, predicting, problem solving, collecting data and describing outcomes to understand basic principles. We have a wide selection of affordable educational products for class led, group or individual learning. From simple starter kits to advanced kits including links for added learning and optional extra activities, teachers notes, design briefs, extensive support material. A wide selection of individual parts, including Raspberry Pi and parts to enable you to build your own computer or parts to build your own robot, with USB Ports, smart phone compatible and WIFI , As well as high end Robots, including the Nao Robot and the Baxter Research Robot and Virtual Robots simulation, enabling students to learn programming.
  • Blog

Democratizing data science

    Home News Democratizing data science
    NextPrevious

    Democratizing data science

    By robonews | News | 0 comment | 15 January, 2019 | 0

    MIT researchers are hoping to advance the democratization of data science with a new tool for nonstatisticians that automatically generates models for analyzing raw data.

    Democratizing data science is the notion that anyone, with little to no expertise, can do data science if provided ample data and user-friendly analytics tools. Supporting that idea, the new tool ingests datasets and generates sophisticated statistical models typically used by experts to analyze, interpret, and predict underlying patterns in data.

    The tool currently lives on Jupyter Notebook, an open-source web framework that allows users to run programs interactively in their browsers. Users need only write a few lines of code to uncover insights into, for instance, financial trends, air travel, voting patterns, the spread of disease, and other trends.

    In a paper presented at this week’s ACM SIGPLAN Symposium on Principles of Programming Languages, the researchers show their tool can accurately extract patterns and make predictions from real-world datasets, and even outperform manually constructed models in certain data-analytics tasks.

    “The high-level goal is making data science accessible to people who are not experts in statistics,” says first author Feras Saad ’15, MEng ’16, a PhD student in the Department of Electrical Engineering and Computer Science (EECS). “People have a lot of datasets that are sitting around, and our goal is to build systems that let people automatically get models they can use to ask questions about that data.”

    Ultimately, the tool addresses a bottleneck in the data science field, says co-author Vikash Mansinghka ’05, MEng ’09, PhD ’09, a researcher in the Department of Brain and Cognitive Sciences (BCS) who runs the Probabilistic Computing Project. “There is a widely recognized shortage of people who understand how to model data well,” he says. “This is a problem in governments, the nonprofit sector, and places where people can’t afford data scientists.”

    The paper’s other co-authors are Marco Cusumano-Towner, an EECS PhD student; Ulrich Schaechtle, a BCS postdoc with the Probabilistic Computing Project; and Martin Rinard, an EECS professor and researcher in the Computer Science and Artificial Intelligence Laboratory.

    Bayesian modeling

    The work uses Bayesian modeling, a statistics method that continuously updates the probability of a variable as more information about that variable becomes available. For instance, statistician and writer Nate Silver uses Bayesian-based models for his popular website FiveThirtyEight. Leading up to a presidential election, the site’s models make an initial prediction that one of the candidates will win, based on various polls and other economic and demographic data. This prediction is the variable. On Election Day, the model uses that information, and weighs incoming votes and other data, to continuously update that probability of a candidate’s potential of winning.

    More generally, Bayesian models can be used to “forecast” — predict an unknown value in the dataset — and to uncover patterns in data and relationships between variables. In their work, the researchers focused on two types of datasets: time-series, a sequence of data points in chronological order; and tabular data, where each row represents an entity of interest and each column represents an attribute.

    Time-series datasets can be used to predict, say, airline traffic in the coming months or years. A probabilistic model crunches scores of historical traffic data and produces a time-series chart with future traffic patterns plotted along the line. The model may also uncover periodic fluctuations correlated with other variables, such as time of year.

    On the other hand, a tabular dataset used for, say, sociological research, may contain hundreds to millions of rows, each representing an individual person, with variables characterizing occupation, salary, home location, and answers to survey questions. Probabilistic models could be used to fill in missing variables, such as predicting someone’s salary based on occupation and location, or to identify variables that inform one another, such as finding that a person’s age and occupation are predictive of their salary.

    Statisticians view Bayesian modeling as a gold standard for constructing models from data. But Bayesian modeling is notoriously time-consuming and challenging. Statisticians first take an educated guess at the necessary model structure and parameters, relying on their general knowledge of the problem and the data. Using a statistical programming environment, such as R, a statistician then builds models, fits parameters, checks results, and repeats the process until they strike an appropriate performance tradeoff that weighs the model’s complexity and model quality.

    The researchers’ tool automates a key part of this process. “We’re giving a software system a job you’d have a junior statistician or data scientist do,” Mansinghka says. “The software can answer questions automatically from the data — forecasting predictions or telling you what the structure is — and it can do so rigorously, reporting quantitative measures of uncertainty. This level of automation and rigor is important if we’re trying to make data science more accessible.”

    Bayesian synthesis

    With the new approach, users write a line of code detailing the raw data’s location. The tool loads that data and creates multiple probabilistic programs that each represent a Bayesian model of the data. All these automatically generated models are written in domain-specific probabilistic programming languages — coding languages developed for specific applications — that are optimized for representing Bayesian models for a specific type of data.

    The tool works using a modified version of a technique called “program synthesis,” which automatically creates computer programs given data and a language to work within. The technique is basically computer programming in reverse: Given a set of input-output examples, program synthesis works its way backward, filling in the blanks to construct an algorithm that produces the example outputs based on the example inputs.

    The approach is different from ordinary program synthesis in two ways. First, the tool synthesizes probabilistic programs that represent Bayesian models for data, whereas traditional methods produce programs that do not model data at all. Second, the tool synthesizes multiple programs simultaneously, while traditional methods produce only one at a time. Users can pick and choose which models best fit their application.

    “When the system makes a model, it spits out a piece of code written in one of these domain-specific probabilistic programming languages … that people can understand and interpret,” Mansinghka says. “For example, users can check if a time series dataset like airline traffic volume has seasonal variation just by reading the code — unlike with black-box machine learning and statistics methods, where users have to trust a model’s predictions but can’t read it to understand its structure.”

    Probabilistic programming is an emerging field at the intersection of programming languages, artificial intelligence, and statistics. This year, MIT hosted the first International Conference on Probabilistic Programming, which had more than 200 attendees, including leading industry players in probabilistic programming such as Microsoft, Uber, and Google.

    “My team at Google AI builds probabilistic programming tools on top of TensorFlow. Probabilistic programming is an important area for Google, and time series modeling is a promising application area, with many use cases at Google and for Google’s users,” says Ryan M. Rifkin ’94, SM ’97, PhD ’02, a Google researcher who was not involved in the research. The researchers’ paper “shows how to apply probabilistic programming to solve this important problem — and reduces the effort needed to get started, by showing how the probabilistic programs can be synthesized from data, rather than written by people.”



    Source: news.mit.edu

    Robotics

    NextPrevious

    Recent Posts

    • Video Friday: Final Goodbye to Opportunity Rover, and More
    • For Micro Robot Insects, Four Wings May Be Better Than Two
    • Robot Attempts to Navigate As Well As a Tiny Desert Ant
    • Learning preferences by looking at the world
    • Is the green new deal sustainable?
    • 4 Experts Respond to Trump's Executive Order on AI
    • From the Segregated South to Bell Labs to the AI Frontier
    • Robot Melts Its Bones to Change How It Walks
    • James E. West backstory
    • Video Friday: Robotic Gecko Gripper, and More

    Recent Posts

    • Video Friday: Final Goodbye to Opportunity Rover, and More February 15, 2019
    • For Micro Robot Insects, Four Wings May Be Better Than Two February 14, 2019
    • Robot Attempts to Navigate As Well As a Tiny Desert Ant February 13, 2019
    • Learning preferences by looking at the world February 12, 2019
    • Is the green new deal sustainable? February 12, 2019
    • 4 Experts Respond to Trump's Executive Order on AI February 12, 2019

    Featured Products

    • bioloid_b_web BIOLOID STEM Standard Kit $200.50 $240.60
    • stem_expansion_web BIOLOID STEM Expansion Kit $181.02
    • Skeleton-bot 4WD Hercules Mobile Robotic Platform $147.48 $122.90
    • ev3_box_web_3 LEGO® Mindstorms EV3 $239.99 $199.99

    Top Rated Products

    • Surveyor-Rover-MK1 Surveyor Rover MK1 $360.00 $300.00
    • MechaTE_Limited MechaTE Robot Hand Limited Edition $900.00
    • mecha_TE_gen2_shop Mecha TE GEN2 $1,200.00 $960.00
    • potentiometer Potentiometer (2-pack) $14.28 $11.90

    Follow us

    Quick Links

    • About us
    • Terms & Conditions
    • Returns Policy
    • Shop
    • Blog
    • Contact Us

    Disclaimer

    robohive.net is a Web Development Showcase and content on all pages is just a placeholder and it is not real. If you have any questions or you are interested in this site in any way, advertising opportunities or even our web development services feel free to Contact Us via this form.
    Copyright 2018 Robo Hive | This is a demo store for showcase purposes — no orders shall be fulfilled.
    • Home
    • Robots
    • Robot Parts
      • Batteries
      • Motors & Wheels
      • Sensors
      • Controllers
      • Radio
    • Robot Apps
    • Education
    • Blog
    Robo Hive