Skip to content

Commit

Permalink
minor readme and docs site fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ejolly committed Aug 11, 2021
1 parent a5b1736 commit 23fb75d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

## Getting started

The best way to learn how to use the package is by checking out the 3 usage tutorials on working with [dense](examples/dense-data), [sparse](examples/sparse-data), and [time-series](examples/timeseries-data). For more detailed usage on specific function arguments and model parameters check out the API reference on the left.
The best way to learn how to use the package is by checking out the [ documentation site](https://cosanlab.github.io/neighbors) which contains usage tutorials as well as API documentation for all package functionality.

### Quick Demo Usage

Expand Down
12 changes: 7 additions & 5 deletions docs/examples/dense-data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
{
"cell_type": "code",
"execution_count": 7,
"execution_count": 3,
"source": [
"import seaborn as sns\n",
"import matplotlib.ticker as ticker\n",
Expand Down Expand Up @@ -1152,16 +1152,15 @@
"source": [
"# Summary\n",
"\n",
"Those are the basics of working with models and dense data. The [next tutorial](/examples/sparse-data) illustrates the primary use case for the toolbox: working with sparse data."
"Those are the basics of working with models and dense data. The [next tutorial](https:/cosanlab.github.io/neighbors/examples/sparse-data) illustrates the primary use case for the toolbox: working with sparse data."
],
"metadata": {}
}
],
"metadata": {
"kernelspec": {
"display_name": "Python [conda env:collab_filter]",
"language": "python",
"name": "conda-env-collab_filter-py"
"name": "python3",
"display_name": "Python 3.8.2 64-bit ('collab_filter': conda)"
},
"language_info": {
"codemirror_mode": {
Expand All @@ -1187,6 +1186,9 @@
"toc_position": {},
"toc_section_display": true,
"toc_window_display": false
},
"interpreter": {
"hash": "a1513f7269d9ecc57456e5ae4df3eafd560085bab6dfa98ba020aafdc6c1a6b5"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/sparse-data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@
"\n",
"Fitting a model to sparse data is very similar to working with dense data with the exception that missing ratings have no ground truth for model performance calculation. However, the `estimate_performance` function can be used to approximate performance via cross-validation. This approach is the defacto standard in several other collaborative filtering toolboxes such as [Surprise](http://surpriselib.com/). \n",
"\n",
"In the [last tutorial](/examples/timeseries-data) we'll see one more feature that's particular useful for working with user ratings that were collected _over time_. "
"In the [last tutorial](https://cosanlab.github.io/neighbors/examples/timeseries-data) we'll see one more feature that's particular useful for working with user ratings that were collected _over time_. "
],
"metadata": {}
}
Expand Down
5 changes: 3 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
[![Build Status](https://github.com/cosanlab/neighbors/actions/workflows/tests_and_docs.yml/badge.svg)](https://github.com/cosanlab/neighbors/actions/workflows/tests_and_docs.yml)
[![Coverage Status](https://coveralls.io/repos/github/cosanlab/neighbors/badge.svg?branch=master)](https://coveralls.io/github/cosanlab/neighbors?branch=master)
![Python Versions](https://img.shields.io/badge/python-3.7%20%7C%203.8%20%7C%203.9-blue)
![Platforms](https://img.shields.io/badge/platform-linux%20%7C%20osx%20%7C%20win-blue)
![Platforms](https://img.shields.io/badge/platform-linux%20%7C%20osx%20%7C%20win-blue)

**A Python package for collaborative filtering on social and emotion datasets**

## Installation
Expand All @@ -12,7 +13,7 @@

## Getting started

The best way to learn how to use the package is by checking out the 3 usage tutorials on working with [dense](examples/dense-data), [sparse](examples/sparse-data), and [time-series](examples/timeseries-data). For more detailed usage on specific function arguments and model parameters check out the API reference on the left.
The best way to learn how to use the package is by checking out the 3 usage tutorials on working with [dense](https://cosanlab.github.io/neighbors/examples/dense-data), [sparse](https://cosanlab.github.io/neighbors/examples/sparse-data), and [time-series](https://cosanlab.github.io/neighbors/examples/timeseries-data). For more detailed usage on specific function arguments and model parameters check out the API reference on the left.

### Quick Demo Usage

Expand Down

0 comments on commit 23fb75d

Please sign in to comment.