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

Repo sync #3

Merged
merged 3 commits into from
Aug 10, 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
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,40 +2,40 @@

To develop LightAutoML on GPUs using RAPIDS some prerequisites need to be met:
1. NVIDIA GPU: Pascal or higher
2. CUDA 11.0 (drivers v460.32+) need to be installed
3. Python version 3.8
2. CUDA 11.0 (drivers v460.32+) or higher need to be installed
3. Python version 3.8 or higher
4. OS: Ubuntu 16.04/18.04/20.04 or CentOS 7/8 with gcc/++ 9.0+

### Installation

[Anaconda](https://www.anaconda.com/products/individual#download-section) or [Miniconda](https://docs.conda.io/en/latest/miniconda.html) is necessary to install RAPIDS and work with environments.

1. Once you install Anaconda/Miniconda, you need to set your own environment. For example:
1. Once you install Anaconda/Miniconda, you need to set up your own environment. For example:
```bash
conda create -n lama_venv python=3.8
conda activate lama_venv
```

2. To clone the project to your own local machine:
2. To install RAPIDS for Python 3.8 and CUDA 11.0 use the following command:
```bash
git clone https://github.com/sb-ai-lab/LightAutoML_GPU.git
cd LightAutoML_GPU
conda install -c rapidsai -c nvidia -c conda-forge rapids=22.10 cudatoolkit=11.0
pip install dask-ml
```

3. Install LightAutoML in develop mode:
3. To clone the project on your own local machine:
```bash
pip install .
pip install catboost==1.0.4
git clone https://github.com/ekonyagin/LightAutoML-1.git
cd LightAutoML-1
```


5. To install RAPIDS for Python 3.8 and CUDA 11.0 use the following command:
4. Install LightAutoML in develop mode and other necessary libraries:
```bash
conda install -c rapidsai -c nvidia -c conda-forge rapids=22.02 cudatoolkit=11.0
pip install dask-ml
pip install .
pip install catboost
pip install py-boost
```

After you change the library code, you need to re-install the library (```pip uninstall lightautoml```). You need to go to LightAutoML directory and then install it once again, calling ```pip install .```
After you change the library code, you need to re-install the library: go to LightAutoML directory and call ```pip install ./ -U```

Please note, if you use NVIDIA GPU Ampere architecture (i.e. Tesla A100 or RTX3000 series), you may need to uninstall pytorch and install it manually
due to compatibility issues. To do so, run following commands:
Expand Down
Loading