Skip to content

Commit

Permalink
0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
chrischoy committed May 29, 2020
1 parent 750267e commit 9608902
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

## [master] - 2020-05-19
## [0.4.3] - 2020-05-29

### Changed

Expand Down
7 changes: 6 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
MIT License

Copyright (c) 2018 Chris Choy (chrischoy@ai.stanford.edu)
Copyright (c) 2020 NVIDIA CORPORATION.
Copyright (c) 2018-2020 Chris Choy (chrischoy@ai.stanford.edu)

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand All @@ -19,3 +20,7 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Please cite "4D Spatio-Temporal ConvNets: Minkowski Convolutional Neural
Networks", CVPR'19 (https://arxiv.org/abs/1904.08755) if you use any part
of the code.
5 changes: 3 additions & 2 deletions MinkowskiEngine/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Copyright (c) Chris Choy (chrischoy@ai.stanford.edu).
# Copyright (c) 2020 NVIDIA CORPORATION.
# Copyright (c) 2018-2020 Chris Choy (chrischoy@ai.stanford.edu).
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
Expand All @@ -21,7 +22,7 @@
# Please cite "4D Spatio-Temporal ConvNets: Minkowski Convolutional Neural
# Networks", CVPR'19 (https://arxiv.org/abs/1904.08755) if you use any part
# of the code.
__version__ = "0.4.2"
__version__ = "0.4.3"

import os
import sys
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ We visualized a sparse tensor network operation on a sparse tensor, convolution,
## Requirements

- Ubuntu 14.04 or higher
- CUDA 10.1 or higher
- CUDA 10.1.243 or higher
- pytorch 1.5 or higher
- python 3.6 or higher
- GCC 7 or higher


## Installation

You can install the Minkowski Engine with `pip`, with anaconda, or on the system directly. If you experience issues installing the package, please checkout the [common compilation issues page](https://stanfordvl.github.io/MinkowskiEngine/issues.html) or [the installation wiki page](https://github.com/StanfordVL/MinkowskiEngine/wiki/Installation).
You can install the Minkowski Engine with `pip`, with anaconda, or on the system directly. If you experience issues installing the package, please checkout the [the installation wiki page](https://github.com/StanfordVL/MinkowskiEngine/wiki/Installation).
If you cannot find a relevant problem, please report the issue on [the github issue page](https://github.com/StanfordVL/MinkowskiEngine/issues).

### Pip
Expand All @@ -67,15 +67,15 @@ First, install pytorch following the [instruction](https://pytorch.org). Next, i
```
sudo apt install libopenblas-dev
pip3 install torch
pip3 install -U MinkowskiEngine
pip3 install -U MinkowskiEngine -v
```

### Pip from the latest source

```
sudo apt install libopenblas-dev
pip3 install torch
pip3 install -U -I git+https://github.com/StanfordVL/MinkowskiEngine
pip3 install -U -I git+https://github.com/StanfordVL/MinkowskiEngine -v
```

### Anaconda
Expand Down
8 changes: 4 additions & 4 deletions docs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ We visualized a sparse tensor network operation on a sparse tensor, convolution,
## Requirements

- Ubuntu 14.04 or higher
- CUDA 10.1 or higher
- CUDA 10.1.243 or higher
- pytorch 1.5 or higher
- python 3.6 or higher
- GCC 7 or higher


## Installation

You can install the Minkowski Engine with `pip`, with anaconda, or on the system directly. If you experience issues installing the package, please checkout the [common compilation issues page](https://stanfordvl.github.io/MinkowskiEngine/issues.html) or [the installation wiki page](https://github.com/StanfordVL/MinkowskiEngine/wiki/Installation).
You can install the Minkowski Engine with `pip`, with anaconda, or on the system directly. If you experience issues installing the package, please checkout the [the installation wiki page](https://github.com/StanfordVL/MinkowskiEngine/wiki/Installation).
If you cannot find a relevant problem, please report the issue on [the github issue page](https://github.com/StanfordVL/MinkowskiEngine/issues).

### Pip
Expand All @@ -67,15 +67,15 @@ First, install pytorch following the [instruction](https://pytorch.org). Next, i
```
sudo apt install libopenblas-dev
pip3 install torch
pip3 install -U MinkowskiEngine
pip3 install -U MinkowskiEngine -v
```

### Pip from the latest source

```
sudo apt install libopenblas-dev
pip3 install torch
pip3 install -U -I git+https://github.com/StanfordVL/MinkowskiEngine
pip3 install -U -I git+https://github.com/StanfordVL/MinkowskiEngine -v
```

### Anaconda
Expand Down

0 comments on commit 9608902

Please sign in to comment.