-
Notifications
You must be signed in to change notification settings - Fork 19
/
b-21-3-Thomp_Samp.py
63 lines (56 loc) · 1.32 KB
/
b-21-3-Thomp_Samp.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
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Thu Mar 15 04:18:20 2018
@author: regkr
"""
#THOMPSON SAPLING
# 1. kutuphaneler
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
veriler = pd.read_csv('Ads_CTR_Optimisation.csv')
#Random Selection (Rasgele Seçim)
'''
import random
N = 10000
d = 10
toplam = 0
secilenler = []
for n in range(0,N):
ad = random.randrange(d)
secilenler.append(ad)
odul = veriler.values[n,ad] # verilerdeki n. satır = 1 ise odul 1
toplam = toplam + odul
plt.hist(secilenler)
plt.show()
'''
import random
#UCB
N = 10000 # 10.000 tıklama
d = 10 # toplam 10 ilan var
#Ri(
#Ni(n)
toplam = 0 # toplam odul
secilenler = []
birler = [0] * d
sifirlar = [0] * d
for n in range(1,N):
ad = 0 #seçilen ilan
max_th = 0
for i in range(0,d):
rasbeta = random.betavariate ( birler[i] + 1 , sifirlar[i] +1)
if rasbeta > max_th:
max_th = rasbeta
ad = i
secilenler.append(ad)
odul = veriler.values[n,ad] # verilerdeki n. satır = 1 ise odul 1
if odul == 1:
birler[ad] = birler[ad]+1
else :
sifirlar[ad] = sifirlar[ad] + 1
toplam = toplam + odul
print('Toplam Odul:')
print(toplam)
plt.hist(secilenler)
plt.show()