Английский язык для ИТ-специалистов

Robots, Androids, Al

Показывать лекцию целиком

1. Vocabulary

Automaton (pl. automata) - Автомат, промышленный робот

Joint - Сустав

Actuator - Исполнительный механизм

End effector - Захватное устройство (робота)

Sensor - Сенсор

Robotic arm - Механическая рука-манипулятор

Planetary rover - Космическая самоходная машина, планетоход

Space probe - Космический зонд (аппарат для исследования космического пространства)

Mobile robot - Мобильный робот

Artificial intelligence (AI) - Искусственный интеллект

Android - Андроид, человекоподобный робот

Expert system - Экспертная система

Neural network - Нейронная сеть

2. Translate from Russian into English:

  • Нейронные сети – это одно из направлений исследований в области искусственного интеллекта, основанное на попытках воспроизвести нервную систему человека. А именно: способность нервной системы обучаться и исправлять ошибки, что должно позволить смоделировать, хотя и достаточно грубо, работу человеческого мозга.
  • Экспертная система – это интеллектуальной компьютерная программы, в которой используются знания и процедуры логического вывода для решения достаточно трудных задач и требующая для своего решения значительного объема экспертных знаний человека. Таким образом, экспертная система - это компьютерная система, которая эмулирует способности эксперта к принятию решений.
  • Исследователи одного из американских университетов изобрели руку-робот, которая, может захватить и переместить предметы, находящиеся от нее на небольшой дистанции.
  • Многие хирурги теперь используют роботов-ассистентов в микрохирургии.
  • Как у любого робота, работа робота-пылесоса построена на использовании различных сенсоров.
  • Роботы стали неотъемлемой частью жизни человека: они выполняют различные задачи на производстве, помогают в быту, используются в медицине и многих других отраслях.
  • Исполнительное устройство промышленного робота выполняет все его двигательные функции.
  • 3.1. Read the text

    3.1. Pre-reading task:

    Here is an example of a conversation with a computer (or to be more precise with the combination of a computer and a program). Read the first part and answer the question: which contributions belong to the machine – in upper or lower case? What helped you understand?

    GOOD DAY WHAT IS YOUR PROBLEM?

    I haven't much of a problem really

    DO YOU THINK YOU ARE UNIQUE?

    I think I am unique in some ways

    SOMETIMES YOU THINK YOU AREN'T UNIQUE IN SOME WAYS

    That's true as well, I'm sure

    ARE YOU SURE?

    Yes, I am certain

    IS THIS THE FIRST TIME YOU'VE BEEN CERTAIN?

    No, I have felt certain of things before now

    ELIZA

    The program that generated this conversation is loosely based on a well-known one, developed by Joseph Weizenbaum in the mid-1960s, called ELIZA. ELIZA altered people's view of computers, since it appeared that computer science had breached the defenses of human language. In one version, ELIZA took the role of a nondirective therapist – that is to say, a psychiatrist whose main aim is to help patients determine the direction of the therapy themselves, and to find their own solutions.

    After the program has printed its opening phrase "GOOD DAY WHAT IS YOUR PROBLEM?" it operates in a cycle, repeatedly carrying out the following actions:

  • Get input from the user.
  • Generate a response.
  • Print the response.
  • When the program gets input from the user, it converts all the characters typed by the user into lowercase, and then in printing its response it converts lowercase characters into uppercase ones. So, in showing the internal workings of the Eliza program, we shall use all lowercase characters. Generally, the program just responds to its most recent input, but occasionally, not on every cycle, it stores the input so that it can reproduce it later prefaced by "EARLIER YOU SAID".

    It is the middle part of the cycle – generating an appropriate response – that is interesting. This has the following sequence of actions:

  • Transform the input to change the 'point of view'.
  • If there is a pattern that matches the transformed input, then choose one of the responses associated with the pattern. Otherwise choose a general-purpose response.
  • As the program will often use all or part of the input in constructing a response, it first changes the 'point of view' to that of Eliza. The method is just to change 'you' to 'i', 'me' to 'you', 'are' to 'am', 'myself' to 'yourself', and so on. So the sentence "you understand me" would be changed to "I understand you". One problem with this very simple approach is that 'you' can be the subject or the object of a sentence (i.e., it may come before or after the verb). Just changing 'you' to 'I' would result in "I understand you" being changed to "you understand I".

    The program, therefore, uses another simple trick to deal with this: if the transformed sentence ends in 'I', then the 'I' is changed to 'me'. This is far from foolproof, for example:

    If I could explain to you I could explain anything to anyone

    IF YOU COULD EXPLAIN TO I YOU COULD EXPLAIN ANYTHING TO ANYONE

    Further tricks like this would not solve the central problem, which is that Eliza is not founded on any principled representation of the form and content of English.

    With the input in its new form, the program then searches for a keyword on a particular topic, or a suitable pattern to match the transformed input, by means of pattern matching. Pattern matching underlies most of Eliza's apparent cleverness, and computer languages that have access to a pattern matching mechanism can easily be programmed to emulate Eliza.

    Patterns. A pattern for Eliza is a list containing a mixture of words and wild cards. Wild cards are elements that can match any series of words, so a pattern is like a partly specified sentence in which some of the words are present and some are still to be filled in. We shall adopt the convention that lists of words and wild cards are enclosed in square brackets, and we will use = or == to denote a wild card in the list. The = (single equals) wild card stands for a single word, and the == (double equals) wild card stands for any number of words (including none at all). The pattern is matched against the list of words inputted by the user (after each occurrence of 'you' has been changed to 'I', etc.), for example:

    [you think you are unique in some way] is changed to [I think I am unique in some way] which matches the pattern [== i am ==]

    [anyone who wasn't a computer] matches the pattern [== computer ==]

    In order to match keywords or phrases in the input Eliza has a series of such patterns associated with standard responses:

    PATTERN STANDARD RESPONSE

    [== want ==] [beware of addictions]

    [== need ==] [can you do without]

    [== mother ==] [tell me more about your family]

    [== sister ==] [family life is full of tensions]

    [do you like your relatives?]

    The program compares the input to each pattern in turn until a match is found. It then produces one of the standard responses. If there is more than one response available, then it picks one at random.

    All in all, it is not difficult to program a computer to give it the appearance of understanding English and producing intelligent responses. One simple method is to match a series of words against a pattern and, if the words match, to give a predefined response. This was used in ELIZA, which was celebrated as an early computer program that could hold an extended dialogue with a human being. But its facade crumbles when you ask it a question with a complicated grammatical structure, or one that demands a reasoned or calculated response. What ELIZA lacks is firstly a means of recognizing the grammatical structure of language and secondly a means of converting the user's query into a representation of the underlying knowledge, from which inferences can be drawn. Despite its limitations the ELIZA approach of word pattern matching has some use as a simple means of communicating with a computer through natural language, in circumstances where 'user-friendliness' is more important than precision.

    Adapted from Sharples, Mike et al. (1991) Computers and Thought: A Practical Introduction to Artificial Intelligence, MIT Press

    3.2. Match the following statements as True or False:

  • Eliza marked a considerable achievement in the development of computer science. Is it true?
  • Eliza's cycle consists of 5 stages. Is it true?
  • Changing the so-called point of view the program can generate grammatically incorrect sentences. Is it true?
  • By means of replacing 'I' with 'me' Eliza avoids foolish errors. Is it true?
  • The key unsolved issue is that Eliza's algorithm is not based on insightful knowledge of the language. Is it true?
  • Pattern matching makes Eliza's responses intelligent. Is it true?
  • Eliza's main downside is inability to draw inferences. Is it true?
  • 4. Discussion

    4.1. Look at the following statements and responses and try to work out why Eliza went wrong:

  • To err is human

    COULD A MACHINE ERR IS HUMAN

  • Who dares wins

    I THINK YOU KNOW THE ANSWER

  • No one is more optimistic than myself

    AREN'T YOU BEING A LITTLE NEGATIVE

  • Whatever my problems are not one of them gets me down

    CAN YOU ALWAYS EXPECT WHATEVER YOUR PROBLEMS TO BE ONE OF THEM GETS YOU DOWN

  • 4.2 A more up-to date version of this program is available on-line at, for example: http://www.xs4all.nl/~hwiegman/ELIZA.HTM or http://nlp-addiction.com/chatbot/

    Try talking to the program and share your impressions with the class. Did it seem intelligent to you? Give your reasons.

    4.3. Think about the ways Eliza's performance can be improved. Make a list of your suggestions.

    4.4 Prepare reports on other applications of robots and AI techniques.

    Вернуться к учебному плану