-
Notifications
You must be signed in to change notification settings - Fork 16
ASSESS
With ASSESS, we demonstrate that we can use Linked Data as source for the automatic generation of educational material. We use RDF data directly to generate quizzes which encompass questions of different types on user-defined domains of interest. By these means, we enable learners to generate self-assessment tests on domains of interest. Teachers are supported through the automatic generation and evaluation of tests.
Let's assume we want to learn more about Albert Einstein, a German-born theoretical physicist, with ASSESS we could for instance get the following question
What is Albert Einstein's birthplace?
with a set of possible answers like
a) Ulm
b) London
c) Berlin
d) New York
with the correct answer being a) of course.
To use ASSESS you need to download it via Git and install it via Maven.
git clone https://github.com/AKSW/SemWeb2NL.git
cd SemWeb2NL
mvn clean install
Afterwards you have to add the dependency to your pom.xml
<dependency>
<groupId>org.aksw</groupId>
<artifactId>ASSESS</artifactId>
<version>0.1-SNAPSHOT</version>
</dependency>
1. Add our AKSW Maven repository to your pom.xml
<repository>
<id>maven.aksw.internal</id>
<name>University Leipzig, AKSW Maven2 Repository</name>
<url>http://maven.aksw.org/archiva/repository/internal</url>
</repository>
2. Add dependency to your pom.xml
<dependency>
<groupId>org.aksw</groupId>
<artifactId>ASSESS</artifactId>
<version>0.1-SNAPSHOT</version>
</dependency>