Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
import importlib.metadata
from datetime import datetime

# project root
# sys.path.insert(0, os.path.abspath(".."))
# General information about the project.
project = "fastcan"
copyright = f"2024 - {datetime.now().year}, fastcan developers (MIT License)"
Expand Down Expand Up @@ -59,6 +57,7 @@

# generate autosummary even if no references
autosummary_generate = True
autosummary_ignore_module_all = False

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = "sphinx"
Expand Down
29 changes: 6 additions & 23 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,30 +17,13 @@ Architecture Diagram

API Reference
-------------
.. automodule:: fastcan
.. autosummary::
:toctree: generated/
:template: module.rst

.. rubric:: Classes

.. autosummary::
:toctree: generated/

FastCan

.. rubric:: Functions

.. autosummary::
:toctree: generated/

refine
minibatch

.. rubric:: Submodules

.. autosummary::
:toctree: generated/

narx
utils
fastcan
fastcan.narx
fastcan.utils

Useful Links
------------
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

.. autosummary::
:toctree:
:template: class.rst
{% for item in classes %}
{{ item }}
{%- endfor %}
Expand All @@ -21,6 +22,7 @@

.. autosummary::
:toctree:
:template: function.rst
{% for item in functions %}
{{ item }}
{%- endfor %}
Expand Down
3 changes: 1 addition & 2 deletions fastcan/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""
The implementation of fast canonical correlation analysis based feature selection
algorithm.
Fast canonical correlation analysis based greedy search algorithm.
"""

# Authors: The fastcan developers
Expand Down
2 changes: 1 addition & 1 deletion fastcan/_cancorr_fast.pyx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Fast feature selection with sum squared canonical correlation coefficients
Fast forward greedy search with sum squared canonical correlation coefficients.
"""
# Authors: The fastcan developers
# SPDX-License-Identifier: MIT
Expand Down
2 changes: 1 addition & 1 deletion fastcan/_fastcan.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Feature selection
Fast canonical correlation analysis based selector.
"""

# Authors: The fastcan developers
Expand Down
2 changes: 1 addition & 1 deletion fastcan/_minibatch.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Feature selection with mini-batch.
Mini-batch selection.
"""

# Authors: The fastcan developers
Expand Down
2 changes: 1 addition & 1 deletion fastcan/_refine.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Refine fastcan selection results
Refine fastcan selection results.
"""

# Authors: The fastcan developers
Expand Down
8 changes: 1 addition & 7 deletions fastcan/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,4 @@ py.extension_module(
install: true
)

py.extension_module(
'_narx_fast',
'_narx_fast.pyx',
subdir: 'fastcan',
cython_args: cython_args,
install: true
)
subdir('narx')
Loading
Loading