Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added docs #23

Merged
merged 2 commits into from
Sep 13, 2023
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
12 changes: 12 additions & 0 deletions DOCS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

░█████╗░██╗░░░██╗████████╗██████╗░░█████╗░███╗░░██╗██╗░░██╗
██╔══██╗██║░░░██║╚══██╔══╝██╔══██╗██╔══██╗████╗░██║██║░██╔╝
██║░░██║██║░░░██║░░░██║░░░██████╔╝███████║██╔██╗██║█████═╝░
██║░░██║██║░░░██║░░░██║░░░██╔══██╗██╔══██║██║╚████║██╔═██╗░
╚█████╔╝╚██████╔╝░░░██║░░░██║░░██║██║░░██║██║░╚███║██║░╚██╗
░╚════╝░░╚═════╝░░░░╚═╝░░░╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░╚══╝╚═╝░░╚═╝


# Welcome to OutRank's documentation!

All functions/methods can be searched-for (search bar on the left).
7 changes: 7 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=./outrank.html"/>
</head>
</html>
276 changes: 276 additions & 0 deletions docs/outrank.html

Large diffs are not rendered by default.

240 changes: 240 additions & 0 deletions docs/outrank/algorithms.html

Large diffs are not rendered by default.

237 changes: 237 additions & 0 deletions docs/outrank/algorithms/feature_ranking.html

Large diffs are not rendered by default.

633 changes: 633 additions & 0 deletions docs/outrank/algorithms/feature_ranking/ranking_mi_numba.html

Large diffs are not rendered by default.

735 changes: 735 additions & 0 deletions docs/outrank/algorithms/importance_estimator.html

Large diffs are not rendered by default.

237 changes: 237 additions & 0 deletions docs/outrank/algorithms/sketches.html

Large diffs are not rendered by default.

636 changes: 636 additions & 0 deletions docs/outrank/algorithms/sketches/counting_ultiloglog.html

Large diffs are not rendered by default.

237 changes: 237 additions & 0 deletions docs/outrank/algorithms/synthetic_data_generators.html

Large diffs are not rendered by default.

342 changes: 342 additions & 0 deletions docs/outrank/algorithms/synthetic_data_generators/generator_naive.html

Large diffs are not rendered by default.

2,078 changes: 2,078 additions & 0 deletions docs/outrank/core_ranking.html

Large diffs are not rendered by default.

239 changes: 239 additions & 0 deletions docs/outrank/core_selftest.html

Large diffs are not rendered by default.

2,209 changes: 2,209 additions & 0 deletions docs/outrank/core_utils.html

Large diffs are not rendered by default.

238 changes: 238 additions & 0 deletions docs/outrank/feature_transformations.html

Large diffs are not rendered by default.

259 changes: 259 additions & 0 deletions docs/outrank/feature_transformations/feature_transformer_vault.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

914 changes: 914 additions & 0 deletions docs/outrank/feature_transformations/ranking_transformers.html

Large diffs are not rendered by default.

349 changes: 349 additions & 0 deletions docs/outrank/task_generators.html

Large diffs are not rendered by default.

797 changes: 797 additions & 0 deletions docs/outrank/task_ranking.html

Large diffs are not rendered by default.

342 changes: 342 additions & 0 deletions docs/outrank/task_selftest.html

Large diffs are not rendered by default.

401 changes: 401 additions & 0 deletions docs/outrank/task_summary.html

Large diffs are not rendered by default.

301 changes: 301 additions & 0 deletions docs/outrank/task_visualization.html

Large diffs are not rendered by default.

237 changes: 237 additions & 0 deletions docs/outrank/visualizations.html

Large diffs are not rendered by default.

980 changes: 980 additions & 0 deletions docs/outrank/visualizations/ranking_visualization.html

Large diffs are not rendered by default.

46 changes: 46 additions & 0 deletions docs/search.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions outrank/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"""
.. include:: ../DOCS.md
"""
from __future__ import annotations

import logging
Expand Down
1 change: 1 addition & 0 deletions run_build_docs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rm -rf docs; pdoc ./outrank -o docs;
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os

import setuptools
# test


def _parse_requirements(file):
required_packages = []
Expand Down