skip to Main Content

I require to do a project as a part of my final year of engineering graduation studies.Can you suggest some projects pertaining to distributed systems and artificial intelligence together and which require python,c or c++ for programming?
Note:-Please suggest a project that is attainable for a group of 2 students.

7

Answers


  1. How about a decision process that uses mapreduce, and gets more efficient at choosing the answer each time?

    Login or Signup to reply.
  2. Perhaps improve computer opponents for Go?

    http://en.wikipedia.org/wiki/Go_(game)

    Login or Signup to reply.
  3. If GO seems to complicated, you could also try a five in a row computer opponent. (Wikipedia does this with GO-pieces, but I’m more used to the tic-tac-toe noughts and crosses.)

    Login or Signup to reply.
  4. And what about participating in NetFlix competition?

    Login or Signup to reply.
  5. Orange is an comprehensive data mining and machine learing suite featuring Python scripting and visual programming. Maybe you too distributed it:)

    Login or Signup to reply.
  6. How about hacking a P2P protocol and implementing something useful? I worked on a proxy cache implementation for P2P traffic. Basically, design and implement a proxy cache for P2P traffic. It will be different from web documents/objects in that:

    1- P2P objects are immutable. You might request a web-page more than once, but you really download a P2P object (e.g., movie) once and read it from your desk multiple times.

    2- P2P objects are huge compared to web objects (up to few Gigabytes) so you’ll need to cache some objects partially, and implement some kind of smart admission/eviction policy.

    3- P2P objects have different popularity. Just because something is in the cache does not mean it should stay in the cache forever, because its popularity will degrade (i.e., once a movie is released it is very popular, downloaded a lot, then it drops and everybody forgets about it), so you can’t rely on recency or frequency alone as the only replacement policy.

    Login or Signup to reply.
  7. I need some kind of tool which observes the behaviour of a automation system (for instance a process control system), and is able to figure out on which inputs which actions follow, and then derives some kind of model from it which would then be usable as a simulation of the real system. It’s not exactly distributed, but its engineering 🙂

    On the other hand, our code is written in java (although you could use jython instead).

    If you are interested, drop me a mail (juergen DOT rose AT inavare DOT net).

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search