My Project
|
Classes | |
class | Knap |
class | ReadFiles |
Functions | |
def | eval_func (a) |
This function converts a value to a string and returns it. More... | |
def | mul_func (a) |
This function converts a value to an integer and multiplies it by 500. More... | |
def | make_list (a) |
def | div_func (a) |
def | recommendation () |
This is the core function that reads files, takes user input, applies association rules, and uses knapsack to finally output a good star cast for a movie. It uses other classes to achieve this functionality. | |
def | actorEvaluation () |
@file File Documented
def StarCastRecommend.actorEvaluation | ( | ) |
Function that communicates with the user interface.
def StarCastRecommend.div_func | ( | a | ) |
This function divides the number a by 500 and returns it.
def StarCastRecommend.eval_func | ( | a | ) |
This function converts a value to a string and returns it.
a | Value to be converted to string |
def StarCastRecommend.make_list | ( | a | ) |
This function creates a list out of the parameter and returns it.
def StarCastRecommend.mul_func | ( | a | ) |
This function converts a value to an integer and multiplies it by 500.
a | Value to be multiplied by 500 |