[go: nahoru, domu]

Skip to content

Commit

Permalink
Update version numbers for v1.1.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 495067827
  • Loading branch information
anastasiyabl authored and Copybara-Service committed Dec 13, 2022
1 parent 7bbdcf1 commit 63d7e03
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@ to inspect some example model inputs and outputs.
If you're on a GPU machine:

```bash
pip install deepconsensus[gpu]==1.0.1
pip install deepconsensus[gpu]==1.1.0
# To make sure the `deepconsensus` CLI works, set the PATH:
export PATH="/home/${USER}/.local/bin:${PATH}"
```

If you're on a CPU machine:

```bash
pip install deepconsensus[cpu]==1.0.1
pip install deepconsensus[cpu]==1.1.0
# To make sure the `deepconsensus` CLI works, set the PATH:
export PATH="/home/${USER}/.local/bin:${PATH}"
```
Expand All @@ -94,13 +94,13 @@ export PATH="/home/${USER}/.local/bin:${PATH}"
For GPU:

```bash
sudo docker pull google/deepconsensus:1.0.0-gpu
sudo docker pull google/deepconsensus:1.1.0-gpu
```

For CPU:

```bash
sudo docker pull google/deepconsensus:1.0.0
sudo docker pull google/deepconsensus:1.1.0
```

### From source
Expand Down
4 changes: 2 additions & 2 deletions README_pip.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
If you're on a GPU machine:

```bash
pip install deepconsensus[gpu]==1.0.1
pip install deepconsensus[gpu]==1.1.0
# To make sure the `deepconsensus` CLI works, set the PATH:
export PATH="/home/${USER}/.local/bin:${PATH}"
```

If you're on a CPU machine:

```bash
pip install deepconsensus[cpu]==1.0.1
pip install deepconsensus[cpu]==1.1.0
# To make sure the `deepconsensus` CLI works, set the PATH:
export PATH="/home/${USER}/.local/bin:${PATH}"
```
Expand Down
2 changes: 1 addition & 1 deletion deepconsensus/utils/dc_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import tensorflow as tf

# DeepConsensus Version
__version__ = '1.0.1'
__version__ = '1.1.0'

# Vocab
GAP = ' '
Expand Down
8 changes: 4 additions & 4 deletions docs/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ QS_DIR="${HOME}/deepconsensus_quick_start"
mkdir -p "${QS_DIR}" "${QS_DIR}/model"

# Download the input PacBio Subread data.
gsutil cp gs://brain-genomics-public/research/deepconsensus/quickstart/v1.0/n1000.subreads.bam "${QS_DIR}"/
gsutil cp gs://brain-genomics-public/research/deepconsensus/quickstart/v1.1/n1000.subreads.bam "${QS_DIR}"/

# Download the DeepConsensus model.
gsutil cp -r gs://brain-genomics-public/research/deepconsensus/models/v1.0/model_checkpoint/* "${QS_DIR}"/model/
gsutil cp -r gs://brain-genomics-public/research/deepconsensus/models/v1.1/model_checkpoint/* "${QS_DIR}"/model/
```

This directory should now contain the following files:
Expand Down Expand Up @@ -133,8 +133,8 @@ the appropriate version (CPU / GPU) depending on your use case.

```bash
# Define DOCKER_IMAGE *once* depending on whether you will be using CPU or GPU:
DOCKER_IMAGE=google/deepconsensus:1.0.0 # For CPU
DOCKER_IMAGE=google/deepconsensus:1.0.0-gpu # For GPU
DOCKER_IMAGE=google/deepconsensus:1.1.0 # For CPU
DOCKER_IMAGE=google/deepconsensus:1.1.0-gpu # For GPU
sudo docker pull ${DOCKER_IMAGE}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@
],
"source": [
"! pip install --upgrade pip setuptools wheel\n",
"! pip install deepconsensus[cpu]==1.0.1"
"! pip install deepconsensus[cpu]==1.1.0"
]
},
{
Expand Down

0 comments on commit 63d7e03

Please sign in to comment.