Skip to content
This repository was archived by the owner on Dec 6, 2023. It is now read-only.

Commit 9094419

Browse files
committed
Clarify that FM implementation is not really 'higher' order
1 parent f9a708d commit 9094419

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
polylearn
44
=========
55

6-
A library for higher-order **factorization machines** and **polynomial networks**
6+
A library for **factorization machines** and **polynomial networks**
77
for classification and regression in Python.
88

99
.. image:: https://travis-ci.org/scikit-learn-contrib/polylearn.svg?branch=master

doc/references.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ polylearn reference
66

77
.. _factorization_machine:
88

9-
(Higher Order) Factorization Machines
10-
-------------------------------------
9+
Factorization Machines
10+
----------------------
1111

1212
.. automodule:: polylearn.factorization_machine
1313
:no-members:

polylearn/factorization_machine.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def _predict(self, X):
143143

144144
class FactorizationMachineRegressor(_BaseFactorizationMachine,
145145
_PolyRegressorMixin):
146-
"""Higher order factorization machine for regression (with squared loss).
146+
"""Factorization machine for regression (with squared loss).
147147
148148
Parameters
149149
----------
@@ -257,7 +257,7 @@ def __init__(self, degree=2, n_components=2, alpha=1, beta=1, tol=1e-6,
257257

258258
class FactorizationMachineClassifier(_BaseFactorizationMachine,
259259
_PolyClassifierMixin):
260-
"""Higher order factorization machine for classification.
260+
"""Factorization machine for classification.
261261
262262
Parameters
263263
----------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414

1515
DISTNAME = 'polylearn'
16-
DESCRIPTION = ("Higher-order factorization machines and polynomial networks "
16+
DESCRIPTION = ("Factorization machines and polynomial networks "
1717
"for classification and regression in Python.")
1818
LONG_DESCRIPTION = open('README.rst').read()
1919
MAINTAINER = 'Vlad Niculae'

0 commit comments

Comments
 (0)