Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spark
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs525-sp18-g07
spark
Commits
b77f7390
Commit
b77f7390
authored
12 years ago
by
Nick Pentreath
Browse files
Options
Downloads
Patches
Plain Diff
Python ALS example
parent
cb867e9f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
python/examples/als.py
+71
-0
71 additions, 0 deletions
python/examples/als.py
with
71 additions
and
0 deletions
python/examples/als.py
0 → 100755
+
71
−
0
View file @
b77f7390
"""
This example requires numpy (http://www.numpy.org/)
"""
from
os.path
import
realpath
import
sys
import
numpy
as
np
from
numpy.random
import
rand
from
numpy
import
matrix
from
pyspark
import
SparkContext
LAMBDA
=
0.01
# regularization
np
.
random
.
seed
(
42
)
def
rmse
(
R
,
ms
,
us
):
diff
=
R
-
ms
*
us
.
T
return
np
.
sqrt
(
np
.
sum
(
np
.
power
(
diff
,
2
))
/
M
*
U
)
def
update
(
i
,
vec
,
mat
,
ratings
):
uu
=
mat
.
shape
[
0
]
ff
=
mat
.
shape
[
1
]
XtX
=
matrix
(
np
.
zeros
((
ff
,
ff
)))
Xty
=
np
.
zeros
((
ff
,
1
))
for
j
in
range
(
uu
):
v
=
mat
[
j
,
:]
XtX
+=
v
.
T
*
v
Xty
+=
v
.
T
*
ratings
[
i
,
j
]
XtX
+=
np
.
eye
(
ff
,
ff
)
*
LAMBDA
*
uu
return
np
.
linalg
.
solve
(
XtX
,
Xty
)
if
__name__
==
"
__main__
"
:
if
len
(
sys
.
argv
)
<
2
:
print
>>
sys
.
stderr
,
\
"
Usage: PythonALS <master> <M> <U> <F> <iters> <slices>
"
exit
(
-
1
)
sc
=
SparkContext
(
sys
.
argv
[
1
],
"
PythonALS
"
,
pyFiles
=
[
realpath
(
__file__
)])
M
=
int
(
sys
.
argv
[
2
])
if
len
(
sys
.
argv
)
>
2
else
100
U
=
int
(
sys
.
argv
[
3
])
if
len
(
sys
.
argv
)
>
3
else
500
F
=
int
(
sys
.
argv
[
4
])
if
len
(
sys
.
argv
)
>
4
else
10
ITERATIONS
=
int
(
sys
.
argv
[
5
])
if
len
(
sys
.
argv
)
>
5
else
5
slices
=
int
(
sys
.
argv
[
6
])
if
len
(
sys
.
argv
)
>
6
else
2
print
"
Running ALS with M=%d, U=%d, F=%d, iters=%d, slices=%d
\n
"
%
\
(
M
,
U
,
F
,
ITERATIONS
,
slices
)
R
=
matrix
(
rand
(
M
,
F
))
*
matrix
(
rand
(
U
,
F
).
T
)
ms
=
matrix
(
rand
(
M
,
F
))
us
=
matrix
(
rand
(
U
,
F
))
Rb
=
sc
.
broadcast
(
R
)
msb
=
sc
.
broadcast
(
ms
)
usb
=
sc
.
broadcast
(
us
)
for
i
in
range
(
ITERATIONS
):
ms
=
sc
.
parallelize
(
range
(
M
),
slices
)
\
.
map
(
lambda
x
:
update
(
x
,
msb
.
value
[
x
,
:],
usb
.
value
,
Rb
.
value
))
\
.
collect
()
ms
=
matrix
(
np
.
array
(
ms
)[:,
:,
0
])
# collect() returns a list, so array ends up being
# a 3-d array, we take the first 2 dims for the matrix
msb
=
sc
.
broadcast
(
ms
)
us
=
sc
.
parallelize
(
range
(
U
),
slices
)
\
.
map
(
lambda
x
:
update
(
x
,
usb
.
value
[
x
,
:],
msb
.
value
,
Rb
.
value
.
T
))
\
.
collect
()
us
=
matrix
(
np
.
array
(
us
)[:,
:,
0
])
usb
=
sc
.
broadcast
(
us
)
error
=
rmse
(
R
,
ms
,
us
)
print
"
Iteration %d:
"
%
i
print
"
\n
RMSE: %5.4f
\n
"
%
error
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment