Students often spend a lot of money on university applications not knowing if they are eligible for the programme or not. We built an application that assesses eligibility requirements for a specific degree programme at a university before students send in their application, saving both money and time.
The Student Eligibility Checker gets user inputs like the masters they want to apply for ,the candidate's GPA, information about their Bachelors, etc. and uses the input to populate an eligibility score. This eligibility score shows the user whether he is eligible or not for the program he wants to apply for.
The system works on an Ontology driven decision making approach. It is configured only to work for courses offered at the Vrije Universiteit Amsterdam
at this point of time. All the information about the courses is stored in the ontology and all the important criterias required for the decision making is also kept in the ontology. This ensures that the ontology forms the heart of the system and the user inputs are used to compare with the ontology to arrive at a decision.
- Input: User values - GPA, preferred choice of masters, previous education details, english test scores etc.
- Decision Making: Ontology - contains the data about the courses and the eligibility criterias.
- Output: A Eligibility Score - High eligibility score means the person is eligible for the course and vice versa
The system is basically a Website
built using HTML and other frontend technologies like CSS,JQUERY and Javascript
. The website is hosted on a local server using Python's Flask Framework
. Python version 3.x.x is used to establish the connection between the Website and the ontology. The ontology is a .ttl file and its being queried using SPARQL
.
- Download the repository and extract the contents to a folder.
- Navigate to the repository location in the command line.
- Ensure that Flask and rdflib packages are installed in your location using the following commands:
pip install flask
pip install rdflib
- To start hosting the server, follow the below command.
python3 server.py
- Once the script is executed, Go to the following link to start using the Student Eligibility checker:http://127.0.0.1:5000/index
- Now the server and the system are up and running. Try your hands at the Student Eligibility checker to save time and money on your college apps!!
- Rohit Shaw
- Katerina Chinnappan
- Kailainathan Muthiah Kasinathan
- Gorkem Simsek-Senel
A project built for the course Knowledge Engineering at Vrije Universiteit Amsterdam.