-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updated sphinx version and theme * WIP * Updated docs * Updated index * wip * Updated quickstart docs * WIP * WIP * Added different sections * Changes to indexes * added example to index * Update requirements.txt * WIP * WIP * WIP * WIP * Updated researcher doc * WIP * Update index.rst * Should work with other versions, just that we don't build wheels * Update quickstart guide * Update developer guide * Update researcher guide * Update developer guide * fixed step numbering * add announcement to docs * Updated styling * separate announcement from conf file * Styling changes * Updated install guide * Update docs * remove pypi from docs * Updated foodrecce example * Updated guides and index * update api reference * Update install * Update docs * clean up * Change api and contributors guide order * shortened official site label * Updated developer guide * Lightened dark primary color * Added tutorials, examples links to github repo * clean up * clean up * clean up * Remove duplicate index * re-organize hyperopt * minor changes * update install from github source * revise quickstart * update install from source * revise developer guide * minor changes * revise researcher guide * minor changes * revise foodrecce example * minor changes * Add link to GitHub --------- Co-authored-by: tqtg <tuantq.vnu@gmail.com>
- Loading branch information
Showing
34 changed files
with
3,253 additions
and
237 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<div> | ||
Welcome to our new documentation site! Please report any issues | ||
<a href='https://github.com/PreferredAI/cornac/issues/new?title=%5BDOCS%5D'>here</a>. | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Cython>=3.0.5 | ||
numpy>=1.26.1 | ||
scipy>=1.11.3 | ||
sphinx-rtd-theme>=1.3.0 | ||
pydata-sphinx-theme>=0.14.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
html[data-theme="light"] { | ||
--pst-color-primary: #A3361F; | ||
--pst-color-secondary: #BE181E; | ||
--pst-color-primary-bg: #95736d; | ||
--pst-color-secondary-bg: #94dfff; | ||
--pst-color-inline-code-links: #1F70A3; | ||
} | ||
|
||
html[data-theme="dark"] { | ||
--pst-color-primary: #c15f63; | ||
--pst-color-secondary: #18BEB8; | ||
--pst-color-primary-bg: #95736d; | ||
--pst-color-secondary-bg: #0082ba; | ||
--pst-color-inline-code-links: #c4c8ff; | ||
} | ||
|
||
html { | ||
--pst-font-size-h1: 2.5rem; | ||
--pst-font-size-h2: 1.8rem; | ||
--pst-font-size-h3: 1.3rem; | ||
--pst-font-size-h4: 1.2rem; | ||
--pst-font-size-h5: 1.1rem; | ||
--pst-font-size-h6: 1.05rem; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[ | ||
{ | ||
"name": "dev", | ||
"version": "1.17", | ||
"url": "https://cornac.readthedocs.io/1.17/" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
Data | ||
==== | ||
|
||
|
||
.. automodule:: cornac.data | ||
:members: | ||
|
||
Dataset | ||
------------------------------------ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
docs/source/eval_methods.rst → docs/source/api_ref/eval_methods.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
Evaluation Methods | ||
====================== | ||
================== | ||
|
||
.. automodule:: cornac.eval_methods | ||
|
||
Base Method | ||
----------------------------------------------- | ||
----------- | ||
.. automodule:: cornac.eval_methods.base_method | ||
:members: | ||
|
||
Cross Validation | ||
---------------------------------------------------- | ||
---------------- | ||
.. automodule:: cornac.eval_methods.cross_validation | ||
:members: | ||
|
||
Propensity Stratified Evaluation | ||
-------------------------------------------------------------------- | ||
-------------------------------- | ||
.. automodule:: cornac.eval_methods.propensity_stratified_evaluation | ||
:members: | ||
|
||
Ratio Split | ||
----------------------------------------------- | ||
----------- | ||
.. automodule:: cornac.eval_methods.ratio_split | ||
:members: | ||
|
||
Stratified Split | ||
---------------------------------------------------- | ||
---------------- | ||
.. automodule:: cornac.eval_methods.stratified_split | ||
:members: | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Hyper-parameter Tuning | ||
====================== | ||
|
||
|
||
Grid Search | ||
--------------- | ||
.. automodule:: cornac.hyperopt | ||
:members: GridSearch | ||
|
||
Random Search | ||
-------------------- | ||
.. automodule:: cornac.hyperopt | ||
:members: RandomSearch | ||
|
||
Search Domain | ||
--------------- | ||
.. automodule:: cornac.hyperopt | ||
:members: Discrete, Continuous |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
API Reference | ||
============= | ||
|
||
Welcome to the API Reference. This section contains the documentation of the | ||
functions and classes of the ``cornac`` package. | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: API Reference | ||
|
||
data | ||
models | ||
metrics | ||
eval_methods | ||
experiment | ||
datasets | ||
hyperopt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.