2012-01-10 17:01:06 +00:00
|
|
|
|
|
|
|
:- use_module(library(pfl)).
|
|
|
|
|
|
|
|
/* base file for school database. Supposed to be called from school_*.yap */
|
|
|
|
|
|
|
|
%
|
|
|
|
% bayes is a parfactor for a bayesian network,
|
|
|
|
% first argument is target of other arguments pop(K) <- abi(K)
|
|
|
|
% second argument is the name of a predicate to call for \phi (CPT)
|
|
|
|
% last argument is a list of goals defining the constraints over the elements
|
|
|
|
% of the
|
|
|
|
%
|
|
|
|
|
|
|
|
%
|
|
|
|
% these states that skolem variables abi(K) are in a parametric factor with
|
|
|
|
% with \phi defined by abi_table(X) and whose domain and constraints
|
|
|
|
% is obtained from professor/1.
|
|
|
|
%
|
2012-08-15 22:01:45 +01:00
|
|
|
|
2012-01-10 17:01:06 +00:00
|
|
|
bayes abi(K)::[h,m,l] ; abi_table ; [professor(K)].
|
|
|
|
|
|
|
|
bayes pop(K)::[h,m,l], abi(K) ; pop_table ; [professor(K)].
|
|
|
|
|
2012-08-15 22:01:45 +01:00
|
|
|
bayes diff(C) :: [h,m,l] ; diff_table ; [course(C,_)].
|
2012-01-10 17:01:06 +00:00
|
|
|
|
2012-08-15 22:01:45 +01:00
|
|
|
bayes int(S) :: [h,m,l] ; int_table ; [student(S)].
|
2012-01-10 17:01:06 +00:00
|
|
|
|
2012-08-15 22:01:45 +01:00
|
|
|
bayes grade(C,S)::[a,b,c,d], int(S), diff(C) ; grade_table ; [registration(_,C,S)].
|
2012-01-10 17:01:06 +00:00
|
|
|
|
2012-08-15 22:01:45 +01:00
|
|
|
bayes satisfaction(C,S)::[h,m,l], abi(P), grade(C,S) ; sat_table ; [reg_satisfaction(C,S,P)].
|
2012-01-10 17:01:06 +00:00
|
|
|
|
2012-09-23 13:24:49 +01:00
|
|
|
bayes rat(C) :: [h,m,l], Sats ; avg ; [course_rat(C, Sats)].
|
2012-01-10 17:01:06 +00:00
|
|
|
|
2012-09-23 13:24:49 +01:00
|
|
|
bayes rank(S) :: [a,b,c,d], Grades ; avg ; [student_ranking(S,Grades)].
|
2012-01-10 17:01:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
grade(Key, Grade) :-
|
|
|
|
registration(Key, CKey, SKey),
|
|
|
|
grade(CKey, SKey, Grade).
|
|
|
|
|
2012-08-15 22:01:45 +01:00
|
|
|
reg_satisfaction(CKey, SKey, PKey) :-
|
2012-01-10 17:01:06 +00:00
|
|
|
registration(_Key, CKey, SKey),
|
|
|
|
course(CKey, PKey).
|
|
|
|
|
2012-08-29 02:21:14 +01:00
|
|
|
course_rat(CKey, Sats) :-
|
2012-01-10 17:01:06 +00:00
|
|
|
course(CKey, _),
|
2012-09-23 13:24:49 +01:00
|
|
|
setof(satisfaction(CKey,SKey),
|
|
|
|
PKey^reg_satisfaction(CKey, SKey, PKey),
|
2012-01-10 17:01:06 +00:00
|
|
|
Sats).
|
|
|
|
|
|
|
|
student_ranking(SKey, Grades) :-
|
|
|
|
student(SKey),
|
|
|
|
setof(grade(CKey,SKey), RKey^registration(RKey,CKey,SKey), Grades).
|
|
|
|
|
|
|
|
:- ensure_loaded(tables).
|
|
|
|
|
2012-08-15 22:01:45 +01:00
|
|
|
% convert to longer names
|
|
|
|
professor_ability(P,A) :- abi(P, A).
|
|
|
|
|
|
|
|
professor_popularity(P,A) :- pop(P, A).
|
|
|
|
|
|
|
|
registration_grade(R,A) :-
|
|
|
|
registration(R,C,S),
|
|
|
|
grade(C,S,A).
|
|
|
|
|
|
|
|
registration_satisfaction(R,A) :-
|
|
|
|
registration(R,C,S),
|
|
|
|
satisfaction(C,S,A).
|
|
|
|
|
|
|
|
student_intelligence(P,A) :- int(P, A).
|
|
|
|
|
|
|
|
course_difficulty(P,A) :- diff(P, A).
|
|
|
|
|
|
|
|
|
2012-08-29 02:21:14 +01:00
|
|
|
registration_course(R,C) :-
|
|
|
|
registration(R, C, _).
|
|
|
|
|
|
|
|
registration_student(R,S) :-
|
|
|
|
registration(R, _, S).
|
|
|
|
|
|
|
|
course_rating(C,X) :- rat(C,X).
|
|
|
|
|
2012-01-10 17:01:06 +00:00
|
|
|
%
|
|
|
|
% evidence
|
|
|
|
%
|
2012-08-15 22:01:45 +01:00
|
|
|
%abi(p0, h).
|
2012-01-10 17:01:06 +00:00
|
|
|
|
2012-08-15 22:01:45 +01:00
|
|
|
%pop(p1, m).
|
|
|
|
%pop(p2, h).
|
2012-01-10 17:01:06 +00:00
|
|
|
|
|
|
|
% Query
|
|
|
|
% ?- abi(p0, X).
|
|
|
|
|