forked from DevilEEE/VBPR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.py
45 lines (34 loc) · 813 Bytes
/
common.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
# -*- coding: utf-8 -*-
"""
Created on Mon Jul 16 13:50:56 2018
@author: Shinelon
"""
import numpy as np
import codecs
import os
import pandas as pd
import re
class vote:
def __init__(self):
self.user = 0
self.item = 0
self.label = 0
self.voteTime = 0
def fopen(path='hehe.txt', mode='r'):
head = "C:/Users/Shinelon/Desktop/VBR2016"
m = os.path.join(head, path)
m = m.replace('\\','/')
f = codecs.open(m, mode)
return f
def inner(x, y):
if not (len(x) == len(y)):
print "inner error, size does not match"
return np.dot(x, y)
def square(x):
return x*x
def desquare(x):
return 2*x
def stringTrim(s):
return s.strip()
def sigmoid(x):
return 1.0/(1.0 + np.exp(-x))