This repository was archived by the owner on Apr 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy path_mf.py
More file actions
116 lines (90 loc) · 4.54 KB
/
_mf.py
File metadata and controls
116 lines (90 loc) · 4.54 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
""" Matrix Factorization.
"""
# Author: Alexandre Gramfort <alexandre.gramfort@inria.fr>
# Olivier Grisel <olivier.grisel@ensta.org>
# Mathieu Blondel <mathieu@mblondel.org>
# Denis A. Engemann <denis-alexander.engemann@inria.fr>
# Michael Eickenberg <michael.eickenberg@inria.fr>
# Giorgio Patrini <giorgio.patrini@anu.edu.au>
#
# License: BSD 3 clause
from abc import ABCMeta
from bigframes_vendored.sklearn.base import BaseEstimator
from bigframes import constants
class MatrixFactorization(BaseEstimator, metaclass=ABCMeta):
"""Matrix Factorization (MF).
**Examples:**
>>> import bigframes.pandas as bpd
>>> from bigframes.ml.decomposition import MatrixFactorization
>>> X = bpd.DataFrame({
... "row": [0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6],
... "column": [0,1] * 7,
... "value": [1, 1, 2, 1, 3, 1.2, 4, 1, 5, 0.8, 6, 1, 2, 3],
... })
>>> model = MatrixFactorization(feedback_type='explicit', num_factors=6, user_col='row', item_col='column', rating_col='value', l2_reg=2.06)
>>> W = model.fit(X)
Args:
feedback_type ('explicit' | 'implicit'):
Specifies the feedback type for the model. The feedback type determines the algorithm that is used during training.
num_factors (int or auto, default auto):
Specifies the number of latent factors to use.
user_col (str):
The user column name.
item_col (str):
The item column name.
l2_reg (float, default 1.0):
A floating point value for L2 regularization. The default value is 1.0.
"""
def fit(self, X, y=None):
"""Fit the model according to the given training data.
Args:
X (bigframes.dataframe.DataFrame or bigframes.series.Series or pandas.core.frame.DataFrame or pandas.core.series.Series):
Series or DataFrame of shape (n_samples, n_features). Training vector,
where `n_samples` is the number of samples and `n_features` is
the number of features.
y (default None):
Ignored.
Returns:
bigframes.ml.decomposition.MatrixFactorization: Fitted estimator.
"""
raise NotImplementedError(constants.ABSTRACT_METHOD_ERROR_MESSAGE)
def score(self, X=None, y=None):
"""Calculate evaluation metrics of the model.
.. note::
Output matches that of the BigQuery ML.EVALUATE function.
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-evaluate#matrix_factorization_models
for the outputs relevant to this model type.
Args:
X (bigframes.dataframe.DataFrame | bigframes.series.Series | None):
DataFrame of shape (n_samples, n_features). Test samples.
y (bigframes.dataframe.DataFrame | bigframes.series.Series | None):
DataFrame of shape (n_samples,) or (n_samples, n_outputs). True
labels for `X`.
Returns:
bigframes.dataframe.DataFrame: DataFrame that represents model metrics.
"""
raise NotImplementedError(constants.ABSTRACT_METHOD_ERROR_MESSAGE)
def predict(self, X):
"""Generate a predicted rating for every user-item row combination for a matrix factorization model.
Args:
X (bigframes.dataframe.DataFrame or bigframes.series.Series or pandas.core.frame.DataFrame or pandas.core.series.Series):
Series or a DataFrame to predict.
Returns:
bigframes.dataframe.DataFrame: Predicted DataFrames."""
raise NotImplementedError(constants.ABSTRACT_METHOD_ERROR_MESSAGE)
def fit_predict(
self,
X,
y=None,
):
"""Fit the model with X and generate a predicted rating for every user-item row combination for a matrix factorization model. on X.
Convenience method; equivalent to calling fit(X) followed by predict(X).
Args:
X (bigframes.dataframe.DataFrame or bigframes.series.Series or pandas.core.frame.DataFrame or pandas.core.series.Series):
DataFrame of shape (n_samples, n_features). Training data.
y (default None):
Not used, present here for API consistency by convention.
Returns:
bigframes.dataframe.DataFrame: DataFrame of shape (n_samples, n_input_columns + n_prediction_columns). Returns predicted labels.
"""
raise NotImplementedError(constants.ABSTRACT_METHOD_ERROR_MESSAGE)