-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.py
24 lines (18 loc) · 1.05 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from data_from_ng import REVIEWS
from optimization_objective import make_optimization_objective
from random import seed
# In simultaneous_perturbation.py, you can implement Spall's algorithm.
#
# The following is a dummy implementation!! It is your job to implement it.
# Really, what this amounts to is implementing Equation 6.4 of Spall.
# A tricky thing that I don't have much sense of is how the gain vectors that Spall calls a_k and c_k should
# be chosen.
def optimize_ng_example():
lamb = 1.0 # I'd call this lambda, except in Python lambda is a keyword. Initialize to 1.0. What should it be?
optimization_objective_function = make_optimization_objective(lamb, REVIEWS)
x_list = [(0.0, 0.0), (0.0, 0.0), (0.0, 0.0), (0.0, 0.0), (0.0, 0.0)] # i, movie, x
theta_list = [(0.0, 0.0), (0.0, 0.0), (0.0, 0.0), (0.0, 0.0)] # j, user, theta
print "Initially, the optimization objective is " + str(optimization_objective_function(x_list, theta_list))
if __name__ == "__main__":
seed("Let's make this reproducible, eh?")
optimize_ng_example()