Revision fd9d5b7bdccc56eaca7719136af76bb44551bcfa (click the page title to view the current version)

Introduction

Overview -> Introduction

Materials

In general, you are supposed to read through the reading material and watch any videos assigned before class. Since this is the first class, it may not have been possible in this case, but please do it if you can.

Learning outcomes

After the completion of this workshop, students should

  • be familiar with the tools used, including the wiki, Blackboard, and CodinGame.
  • have an understanding of the flipped classroom and seminar approaches to teaching and learning, and be able to discuss pros and cons of these approach.
  • be able to solve simple Easy puzzles on CodinGame that typically involve the implementation of reflex agents (agents will be introduced next week).
  • be aware of some of the ethical concerns about Artificial Intelligence.

Briefing

Programming

Today, we will work primarily on easy puzzles at CodinGame. This is to familiarise ourselves with CodinGame, and brush dust of our programming skills. You may use any programming language supported by CodinGame, but I am best placed to help you with python.

Problem-Solving on CodinGame.

You do not have to create a user account to use CodinGame, but if you agree to their terms and conditions, you may.

The following puzzles are recommended. I do not expect anyone to manage all six.
Everbody should do the Power of Thor.
If you think this is difficult, you start with Onboarding. Otherwise, please hunt exercises which you find interesting.

  1. Onboarding
    • Description: A tutorial mission for newcomers. Defend the planet with a big laser cannon from the invading insectoid alien ships
    • Topic: Finding a minimal value
  2. Power of Thor — Episode 1
    • Description: Thor’s hammer, Mjollnir has lost all of its powersWill you be able to guide Thor towards the light of power to make the hammer whole again?
    • Topic: Condition statements (if-else)
  3. The Descent
    • Description: The enterprise is in danger: drawn towards the surface of an unknown planet, it is at risk of crashing against towering mountains. Help Kirk and Spock destroy the mountains… Save the enterprise!
    • Topic: Search in an array
  4. Mars Lander — Episode 1
    • Description: You have been promoted to commander of the Mars Lander mission! The goal of the operation is to land an exploration rover on martian ground. Your superiors at NASA expect very much of you for this mission, and you’ll have to prove that you have what it takes to become a great intersideral commander. You will have to land the space ship on mars, making sure that the landing is done smoothly.
    • Topic: Speed regulation
  5. Defibrillators
    • Description: Want to save lives? Good! So help us find the closest defibrillator from a given position in the city of Montpellier, France.
    • Topic: Distance calculation, big data
  6. Horse-racing Duals
    • Description: To make a race between two horses interesting, you will to find the horses with the closest strength.
    • Topic: Sorting, finding a minimum

Preparation

Later in the semester, we will have to test ourselves against problems not available on CodinGame. You need to make sure that you can use python and git on your system.

  1. Make sure you have a development environment (IDE or otherwise) for python on your system.
  2. You should install the numpy and matplotlib libraries. (Use pip or whatever your IDE suggests.)
  3. Make sure that you are able to clone repositories from github.
  4. Test that you are able to run my (some of) test code from the repoes above.

The exact steps depends on your system and preferences.

Heads up

A model of Thor’s world
A model of Thor’s world

Homework

  1. Read through the reading material for this class once more.
  2. Do the preparation for the next lecture, on Rational Agents.