Skip to content
This repository has been archived by the owner on Jun 26, 2021. It is now read-only.

Commit

Permalink
Merge pull request #158 from delira-dev/ownership_changes
Browse files Browse the repository at this point in the history
Ownership changes
  • Loading branch information
justusschock committed Jul 4, 2019
2 parents c7d15a8 + 91eb830 commit 722a536
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,4 @@ Testing is done with a `unittest` suite
for formatting docstrings. Length of line inside docstrings block must be limited to 80 characters to
fit into Jupyter documentation popups.

[this repo]: https://github.com/justusschock/delira
[this repo]: https://github.com/delira-dev/delira
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[<img src="https://img.shields.io/badge/chat-slack%20channel-75BBC4.svg">](https://join.slack.com/t/deliradev/shared_invite/enQtNjI1MjA4MjQzMzQ2LTUzNTQ0MjQyNjJjNzgyODczY2Y1YjYxNjA3ZmQ0MGFhODhkYzQ4M2RjMGM1YWM3YWU5MDM0ZjdiNTQ4MmQ0ZDk)
[![PyPI version](https://badge.fury.io/py/delira.svg)](https://badge.fury.io/py/delira) [![Build Status](https://travis-ci.com/justusschock/delira.svg?branch=master)](https://travis-ci.com/justusschock/delira) [![Documentation Status](https://readthedocs.org/projects/delira/badge/?version=master)](https://delira.readthedocs.io/en/master/?badge=master) [![codecov](https://codecov.io/gh/justusschock/delira/branch/master/graph/badge.svg)](https://codecov.io/gh/justusschock/delira)
![LICENSE](https://img.shields.io/github/license/justusschock/delira.svg) [![DOI](http://joss.theoj.org/papers/10.21105/joss.01488/status.svg)](https://doi.org/10.21105/joss.01488)
[![PyPI version](https://badge.fury.io/py/delira.svg)](https://badge.fury.io/py/delira) [![Build Status](https://travis-ci.com/delira-dev/delira.svg?branch=master)](https://travis-ci.com/delira-dev/delira) [![Documentation Status](https://readthedocs.org/projects/delira/badge/?version=master)](https://delira.readthedocs.io/en/master/?badge=master) [![codecov](https://codecov.io/gh/justusschock/delira/branch/master/graph/badge.svg)](https://codecov.io/gh/delira-dev/delira)
![LICENSE](https://img.shields.io/github/license/delira-dev/delira.svg) [![DOI](http://joss.theoj.org/papers/10.21105/joss.01488/status.svg)](https://doi.org/10.21105/joss.01488)

![logo](docs/_static/logo/delira.svg "delira - Deep Learning in Radiology")

Expand Down Expand Up @@ -32,7 +32,7 @@ Currently the only available backends are [PyTorch](https://pytorch.org) and [Te
|---------------------------------------------|-----------------------------|---------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------|
| None | `pip install delira` | `pip install git+https://github.com/justusschock/delira.git` | Training not possible if backend is not installed separately |
| [`torch`](https://pytorch.org) | `pip install delira[torch]` | `git clone https://github.com/justusschock/delira.git && cd delira && pip install .[torch]` | `delira` with `torch` backend supports mixed-precision training via [NVIDIA/apex](https://github.com/NVIDIA/apex.git) (must be installed separately). |
| [`tensorflow`](https://www.tensorflow.org/) | `pip install delira[tensorflow]` | `git clone https://github.com/justusschock/delira.git && cd delira && pip install .[tensorflow]` | the `tensorflow` backend is still very experimental and lacks some [features](https://github.com/justusschock/delira/issues/47) |
| [`tensorflow`](https://www.tensorflow.org/) | `pip install delira[tensorflow]` | `git clone https://github.com/justusschock/delira.git && cd delira && pip install .[tensorflow]` | the `tensorflow` backend is still very experimental and lacks some [features](https://github.com/delira-dev/delira/issues/47) |
| Full | `pip install delira[full]` | `git clone https://github.com/justusschock/delira.git && cd delira && pip install .[full]` | All backends will be installed. |

### Docker
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ delira - Deep Learning In RAdiology

_api/_build/modules

GitHub <https://github.com/justusschock/delira>
GitHub <https://github.com/delira-dev/delira>



Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/run_style_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if (( $num_errors_after < $num_errors_before )); then
git config --global push.default simple; # Push only to the current branch.
# Make sure to make the output quiet, or else the API token will
# leak! This works because the API key can replace your password.
git push https://$GITHUB_TOKEN@github.com/justusschock/delira.git;
git push https://$GITHUB_TOKEN@github.com/delira-dev/delira.git;
fi

cd "$TRAVIS_BUILD_DIR";
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def find_version(file):
name='delira',
version=delira_version,
packages=find_packages(),
url='https://github.com/justusschock/delira/',
url='https://github.com/delira-dev/delira/',
test_suite="unittest",
long_description=readme,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 722a536

Please sign in to comment.