[go: nahoru, domu]

Skip to content

Commit

Permalink
Update tensorflow-related packages to the latest version.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 495494870
  • Loading branch information
anastasiyabl authored and Copybara-Service committed Dec 15, 2022
1 parent c28cd1f commit 12e0007
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -303,8 +303,8 @@ deepconsensus run \
At the end of your run, you should see:

```
Processed 178 ZMWs in 263.359 seconds
Outcome counts: OutcomeCounter(empty_sequence=0, only_gaps=0, failed_quality_filter=4, failed_length_filter=0, success=174)
Processed 178 ZMWs in 230.602 seconds
Outcome counts: OutcomeCounter(empty_sequence=0, only_gaps=0, failed_quality_filter=1, failed_length_filter=0, success=177)
```

## Optimizing Runtime
Expand Down
2 changes: 1 addition & 1 deletion install-gpu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ echo "$(pip --version)"
# Install python packages used by DeepConsensus.
################################################################################
python3 -m pip install --user -r requirements.txt
python3 -m pip install --user "tensorflow-gpu>=2.9.0"
python3 -m pip install --user "tensorflow-gpu>=2.11.0"
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ echo "$(pip --version)"
# Install python packages used by DeepConsensus.
################################################################################
python3 -m pip install --user -r requirements.txt
python3 -m pip install --user "intel-tensorflow>=2.9.0"
python3 -m pip install --user "intel-tensorflow>=2.11.0"
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
# incompatible when flexible versioning is used.
# DeepConsensus should be used in a dedicated python virtualenv.
pandas==1.5.1
tf-models-official==2.9.2
tf-models-official==2.11.0
pyyaml==5.4.1 # because of tf-models-official
ml_collections==0.1.1
absl-py==1.0.0
keras==2.9.0
keras==2.11.0
pysam==0.19.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
REQUIREMENTS = (here / 'requirements.txt').read_text().splitlines()
EXTRA_REQUIREMENTS = {
# Use '==' to pin the versions.
'cpu': ['intel-tensorflow==2.9.1'],
'gpu': ['tensorflow-gpu==2.9.1']
'cpu': ['intel-tensorflow==2.11.0'],
'gpu': ['tensorflow-gpu==2.11.0']
}


Expand Down

0 comments on commit 12e0007

Please sign in to comment.