recommenders/SETUP.md

168 строки
8.8 KiB
Markdown
Исходник Постоянная ссылка Обычный вид История

<!--
Copyright (c) Recommenders contributors.
Licensed under the MIT License.
-->
2023-04-10 15:37:42 +03:00
# Setup Guide
2018-10-18 17:55:45 +03:00
The repo, including this guide, is tested on Linux. Where applicable, we document differences in [Windows](#windows-specific-instructions) and [MacOS](#macos-specific-instructions) although
2023-04-17 05:27:39 +03:00
such documentation may not always be up to date.
2018-11-15 20:22:28 +03:00
2023-04-10 15:37:42 +03:00
## Extras
2023-04-10 15:37:42 +03:00
In addition to the pip installable package, several extras are provided, including:
+ `[gpu]`: Needed for running GPU models.
+ `[spark]`: Needed for running Spark models.
+ `[dev]`: Needed for development.
+ `[all]`: `[gpu]`|`[spark]`|`[dev]`
2023-04-20 02:28:01 +03:00
+ `[experimental]`: Models that are not thoroughly tested and/or may require additional steps in installation).
2021-08-27 20:20:00 +03:00
2023-04-10 15:37:42 +03:00
## Setup for Core Package
2018-10-18 17:55:45 +03:00
2023-04-10 15:37:42 +03:00
Follow the [Getting Started](./README.md#Getting-Started) section in the [README](./README.md) to install the package and run the examples.
## Setup for GPU
```bash
# 1. Make sure CUDA is installed.
# 2. Follow Steps 1-5 in the Getting Started section in README.md to install the package and Jupyter kernel, adding the gpu extra to the pip install command:
pip install recommenders[gpu]
# 3. Within VSCode:
# a. Open a notebook with a GPU model, e.g., examples/00_quick_start/wide_deep_movielens.ipynb;
# b. Select Jupyter kernel <kernel_name>;
# c. Run the notebook.
```
2019-11-22 00:10:24 +03:00
2023-04-10 15:37:42 +03:00
## Setup for Spark
2019-11-22 00:10:24 +03:00
2021-01-26 17:20:43 +03:00
```bash
# 1. Make sure JDK is installed. For example, OpenJDK 11 can be installed using the command
# sudo apt-get install openjdk-11-jdk
2023-04-20 02:28:01 +03:00
# 2. Follow Steps 1-5 in the Getting Started section in README.md to install the package and Jupyter kernel, adding the spark extra to the pip install command:
pip install recommenders[spark]
# 3. Within VSCode:
# a. Open a notebook with a Spark model, e.g., examples/00_quick_start/als_movielens.ipynb;
# b. Select Jupyter kernel <kernel_name>;
# c. Run the notebook.
2021-01-26 17:20:43 +03:00
```
2019-11-22 00:10:24 +03:00
2023-04-17 05:27:39 +03:00
## Setup for Azure Databricks
2023-04-17 05:27:39 +03:00
The following instructions were tested on Azure Databricks Runtime 12.2 LTS (Apache Spark version 3.3.2) and 11.3 LTS (Apache Spark version 3.3.0).
As of April 2023, Databricks Runtime 13 is not yet supported as it is on Python 3.10.
2018-11-13 20:28:31 +03:00
2023-04-17 05:27:39 +03:00
After an Azure Databricks cluster is provisioned:
```bash
# 1. Go to the "Compute" tab on the left of the page, click on the provisioned cluster and then click on "Libraries".
# 2. Click the "Install new" button.
# 3. In the popup window, select "PyPI" as the library source. Enter "recommenders[examples]" as the package name. Click "Install" to install the package.
2018-11-13 20:28:31 +03:00
```
2019-09-11 18:57:47 +03:00
### Prepare Azure Databricks for Operationalization
2023-04-17 05:27:39 +03:00
<!-- TO DO: This is to be verified/updated 23/04/16 -->
2020-06-16 17:41:58 +03:00
This repository includes an end-to-end example notebook that uses Azure Databricks to estimate a recommendation model using matrix factorization with Alternating Least Squares, writes pre-computed recommendations to Azure Cosmos DB, and then creates a real-time scoring service that retrieves the recommendations from Cosmos DB. In order to execute that [notebook](examples/05_operationalize/als_movie_o16n.ipynb), you must install the Recommenders repository as a library (as described above), **AND** you must also install some additional dependencies. With the *Quick install* method, you just need to pass an additional option to the [installation script](tools/databricks_install.py).
<details>
<summary><strong><em>Quick install</em></strong></summary>
2019-02-28 06:45:47 +03:00
This option utilizes the installation script to do the setup. Just run the installation script
with an additional option. If you have already run the script once to upload and install the `Recommenders.egg` library, you can also add an `--overwrite` option:
```{shell}
2020-06-16 17:41:58 +03:00
python tools/databricks_install.py --overwrite --prepare-o16n <CLUSTER_ID>
```
This script does all of the steps described in the *Manual setup* section below.
</details>
<details>
<summary><strong><em>Manual setup</em></strong></summary>
You must install three packages as libraries from PyPI:
2019-02-28 06:45:47 +03:00
* `azure-cli==2.0.56`
* `azureml-sdk[databricks]==1.0.8`
* `pydocumentdb==2.3.3`
You can follow instructions [here](https://docs.azuredatabricks.net/user-guide/libraries.html#install-a-library-on-a-cluster) for details on how to install packages from PyPI.
Additionally, you must install the [spark-cosmosdb connector](https://docs.databricks.com/spark/latest/data-sources/azure/cosmosdb-connector.html) on the cluster. The easiest way to manually do that is to:
2021-10-07 19:43:19 +03:00
1. Download the [appropriate jar](https://search.maven.org/remotecontent?filepath=com/azure/cosmos/spark/azure-cosmos-spark_3-1_2-12/4.3.1/azure-cosmos-spark_3-1_2-12-4.3.1.jar) from MAVEN. **NOTE** This is the appropriate jar for spark versions `3.1.X`, and is the appropriate version for the recommended Azure Databricks run-time detailed above. See the [Databricks installation script](https://github.com/microsoft/recommenders/blob/main/tools/databricks_install.py#L45) for other Databricks runtimes.
2. Upload and install the jar by:
1. Log into your `Azure Databricks` workspace
2. Select the `Clusters` button on the left.
3. Select the cluster on which you want to import the library.
4. Select the `Upload` and `Jar` options, and click in the box that has the text `Drop JAR here` in it.
5. Navigate to the downloaded `.jar` file, select it, and click `Open`.
6. Click on `Install`.
7. Restart the cluster.
</details>
2019-09-11 18:57:47 +03:00
2023-04-17 05:27:39 +03:00
## Setup for Experimental
<!-- FIXME FIXME 23/04/01 move to experimental. Have not tested -->
The `xlearn` package has dependency on `cmake`. If one uses the `xlearn` related notebooks or scripts, make sure `cmake` is installed in the system. The easiest way to install on Linux is with apt-get: `sudo apt-get install -y build-essential cmake`. Detailed instructions for installing `cmake` from source can be found [here](https://cmake.org/install/).
## Windows-Specific Instructions
For Spark features to work, make sure Java and Spark are installed and respective environment varialbes such as `JAVA_HOME`, `SPARK_HOME` and `HADOOP_HOME` are set properly. Also make sure environment variables `PYSPARK_PYTHON` and `PYSPARK_DRIVER_PYTHON` are set to the the same python executable.
## MacOS-Specific Instructions
2023-04-17 05:27:39 +03:00
We recommend using [Homebrew](https://brew.sh/) to install the dependencies on macOS, including conda (please remember to add conda's path to `$PATH`). One may also need to install lightgbm using Homebrew before pip install the package.
2023-04-17 05:27:39 +03:00
If zsh is used, one will need to use `pip install 'recommenders[<extras>]'` to install \<extras\>.
2023-04-17 05:27:39 +03:00
For Spark features to work, make sure Java and Spark are installed first. Also make sure environment variables `PYSPARK_PYTHON` and `PYSPARK_DRIVER_PYTHON` are set to the the same python executable.
<!-- TO DO: Pytorch m1 mac GPU suppoort -->
2021-06-14 19:51:24 +03:00
2023-04-27 18:28:43 +03:00
## Setup for Developers
If you want to contribute to Recommenders, please first read the [Contributing Guide](./CONTRIBUTING.md). You will notice that our development branch is `staging`.
To start developing, you need to install the latest `staging` branch in local, the `dev` package, and any other package you want. For example, for starting developing with GPU models, you can use the following command:
```bash
git checkout staging
pip install -e .[dev,gpu]
```
You can decide which packages you want to install, if you want to install all of them, you can use the following command:
```bash
git checkout staging
pip install -e .[all]
```
2023-04-17 05:27:39 +03:00
## Test Environments
Depending on the type of recommender system and the notebook that needs to be run, there are different computational requirements.
Currently, tests are done on **Python CPU** (the base environment), **Python GPU** (corresponding to `[gpu]` extra above) and **PySpark** (corresponding to `[spark]` extra above).
Another way is to build a docker image and use the functions inside a [docker container](#setup-guide-for-docker).
## Setup for Making a Release
2021-06-14 19:51:24 +03:00
2023-04-27 18:30:15 +03:00
The process of making a new release and publishing it to [PyPI](https://pypi.org/project/recommenders/) is as follows:
2021-06-14 19:51:24 +03:00
2022-01-11 12:44:29 +03:00
First make sure that the tag that you want to add, e.g. `0.6.0`, is added in [`recommenders.py/__init__.py`](recommenders.py/__init__.py). Follow the [contribution guideline](CONTRIBUTING.md) to add the change.
2021-06-15 17:59:15 +03:00
2021-06-14 19:51:24 +03:00
1. Make sure that the code in main passes all the tests (unit and nightly tests).
2021-06-15 17:59:15 +03:00
1. Create a tag with the version number: e.g. `git tag -a 0.6.0 -m "Recommenders 0.6.0"`.
1. Push the tag to the remote server: `git push origin 0.6.0`.
1. When the new tag is pushed, a release pipeline is executed. This pipeline runs all the tests again (PR gate and nightly builds), generates a wheel and a tar.gz which are uploaded to a [GitHub draft release](https://github.com/microsoft/recommenders/releases).
2021-06-15 17:59:15 +03:00
1. Fill up the draft release with all the recent changes in the code.
2021-06-15 19:24:30 +03:00
1. Download the wheel and tar.gz locally, these files shouldn't have any bug, since they passed all the tests.
2021-12-21 16:37:57 +03:00
1. Install twine: `pip install twine`
1. Publish the wheel and tar.gz to PyPI: `twine upload recommenders*`
2023-04-10 15:37:42 +03:00