jdebate
Don't loose an argument. If you have the facts on your side, jdebate will help!
Welcome to the Website of the project jdebate.
Nowadays loads of communication happens over the internet.
There are blogs and forums where you can post your ideas and talk to other people.
But talking is often not enough. Especially in politics, where you have to argue with people who think differently.
Often such discussions end up in flame wars. And sometimes you just get polluted with arguments that are not important to you.
And this isn't even the end of the story...
This is not how it should be. jdebate is a project, that wants to fix these problems.
The Concept
A good platform for debates has to solve the following problems:
-
It should be easy for people to participate. There shouldn't be any complex rules, like they happen to be for wiki discussions.
-
The good arguments (both on the pro and contra side) must be easily visible, so that also people who just want to have quick glance on the arguments have a good foundation to build their opinion. They should not have to read tons of pages.
-
There should not be any redundant discussions, like in mailing lists, where the same topic appears again and again and no progress is visible.
jdebate tries to do it the following way:
-
Discussions are not linear. There are not trees either, but they form (directed) (hyper-)graphs.
The theses and arguments (both are the same in the sens of the system) build the nodes of this graph.
The (hyper-)edges of the graph are formed by conclusions. So a theses can have many arguments, but an argument can also be used by many theses.
This actually very important because this reduces redundant discussions a lot without having to introduce artifical links between similar topics.
-
Users can vote on basically everything. They can vote on theses, but they can also vote on the conclusions between theses.
Thus the system knows the good arguments and thus can show them prominently to the user who wants to make up his opinion.
-
Because there is so much voting, there will be many parts with just very few votes.
So these votes are not reliable (they even may be the effect of manipulation), so the system deduces opinions from the parts where votes exist, to the parts where no votes exist.
Because the graph is build using conclusions, this can be done using pure propositional logic. (The basic concept on how this is done, you can read here (in german)).
Implementation
The implementation follows a layered concept, every layer should be replaceable. So it should be easy to replace the database or the GUI:
-
Layer 0 : The Database (database) - this is not yet implemented. I started with the other stuff, so I know what I want to store in the database ;-)
-
Layer 1 : The Inference Machine (core) - In this layers conclusions are reduced to simple disjunctive clauses. This eases the inferencing part a lot (because of the reduced amount of special-cases). It allows you to cast votes and then intereferences the consequences of the vote. This layer is also supposed to hide the database-layer completely.
-
Layer 2 : The Conclusion View (conclusion) - This layer introduces the notion of conclusions and reasons.
A reason is the combination of a conclusion with its arguments.
Using math (again), this layer also allows you to add arguments to conclusions, so you can start a discussion about whether a conclusion is good or bad.
The speciality: All the arguments you use on the conclusion automatically reflect to the simple arguments of Layer 1.
So if you add an argument to support a conclusion you actually do nothing else than create a new (parallel) conclusion with your additional argument.
-
Layer 3 : The Userinterface (application) - This layer gives access to the system. This is also not yet implemented, but I plan to do a simple RMI or web-service interface for third-party applications and a web-interface (probably using GWT).
Further Reading
The idea of this project originated by the german pirate party. Thus most of the preliminary discussions was done there:
Developing
If you want to help developing, you are very welcome.
Just send me an email or contact me via my pirate-wiki page.