This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/CLPBN/examples/School
Tiago Gomes 27a235f65b Remove text explaning pfl.
The text is badly written and explanaing pfl shouldn't be in *.pfl files, but rather in paper or README file
2012-12-11 23:36:10 +00:00
..
evidence_128.yap fove initial skeleton.w 2012-01-10 17:01:06 +00:00
parlearn.yap move examples upwards. 2011-05-01 22:49:34 +01:00
parschema.yap Remove text explaning pfl. 2012-12-11 23:36:10 +00:00
README more PFL support. 2012-09-26 00:04:58 +01:00
sample32.yap move examples upwards. 2011-05-01 22:49:34 +01:00
sch32.yap make EM work with PFL and BP. 2012-08-15 16:01:45 -05:00
schema.yap move examples upwards. 2011-05-01 22:49:34 +01:00
school32_data.yap full school 2012-04-23 07:13:58 -05:00
school_32.yap add flag to lifted knowledge compilation and s/fove/lve 2012-11-08 15:05:48 +00:00
school_64.yap move examples upwards. 2011-05-01 22:49:34 +01:00
school_128.yap fove initial skeleton.w 2012-01-10 17:01:06 +00:00
tables.yap fove initial skeleton.w 2012-01-10 17:01:06 +00:00

This is a version of the school database, based on the PRM School example.

There are four main files:

school_128.yap: a school with 128 professors, 256 courses and 4096 students.
school_64.yap: medium size school
school_32.yap: small school (pfl)

sch32.yap: small school (clp(bn))

parschema.yap: the CLP(BN) schema

schema.yap: the PFL schema

tables: CPTs

=============================================================================

professor_ability(p0,X).

professor_popularity(p0,X).

professor_ability(p0,X), professor_popularity(p0,h).

professor_ability(p0,h), professor_popularity(p0,X).

registration_grade(r0,X).

registration_grade(r0,X), registration_course(r0,C), course_difficulty(C,h).

registration_grade(r0,X), registration_course(r0,C), course_difficulty(C,h), registration_student(r0,S), student_intelligence(S,h).

registration_grade(r0,X), registration_course(r0,C), course_difficulty(C,l), registration_student(r0,S), student_intelligence(S,h).

registration_satisfaction(r0,X).

registration_satisfaction(r0,X), registration_student(r0,S), student_intelligence(S,h).

registration_satisfaction(r0,X), registration_grade(r0,a).

registration_satisfaction(r0,X), registration_grade(r0,d).

registration_satisfaction(r0,h), registration_grade(r0,X).

course_rating(c0,X).

course_rating(c0,h), course_difficulty(c0,X).

course_difficulty(c0,X).

rank(s0,X).

rank(s0,X), student_intelligence(s0,h).