-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathuser.py
51 lines (42 loc) · 1.32 KB
/
user.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import pyro
import random
class User():
def __init__(self):
self.age = 'young'
self.sex = 'male'
self.occupation = 'student'
self.interested_in = 1
self.generate()
def generate(self):
a = pyro.sample('a', pyro.distributions.Uniform(18,80)).item()
if a <= 30:
self.age = 1
elif a > 30 and a <= 60:
self.age = 2
else:
self.age = 3
s = pyro.sample('s', pyro.distributions.Uniform(0,1)).item()
if s < 0.5:
self.sex = 1
else:
self.sex = 2
i = pyro.sample('i', pyro.distributions.Uniform(0,1)).item()
if i <= 0.15:
self.occupation = 1
elif i > 0.15 and i < 0.9:
self.occupation = 2
else:
self.occupation = 2
p = pyro.sample('p', pyro.distributions.Uniform(0,25)).item()
if p <= 1:
self.interested_in = 1
elif p <= 4:
self.interested_in = 2
elif p <= 9:
self.interested_in = 3
elif p <= 16:
self.interested_in = 4
else:
self.interested_in = 5
def __str__(self):
return f"User: ({self.age}, {self.sex}, {self.occupation})"