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

Decrease versions of numpy and torch required by laser-encoders #264

Merged
merged 5 commits into from
Nov 15, 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
6 changes: 3 additions & 3 deletions laser_encoders/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ laser_encoders is the official Python package for the Facebook [LASER](https://g
## Dependencies

- Python `>= 3.8`
avidale marked this conversation as resolved.
Show resolved Hide resolved
- [PyTorch `>= 2.0`](http://pytorch.org/)
- [PyTorch `>= 1.10.0`](http://pytorch.org/)
- sacremoses `>=0.1.0`
- sentencepiece `>=0.1.99`
- numpy `>=1.25.0`
- numpy `>=1.21.3`
- fairseq `>=0.12.2`

You can find a full list of requirements [here](requirements.txt)
You can find a full list of requirements [here](https://github.com/facebookresearch/LASER/blob/main/pyproject.toml)

## Installation

Expand Down
8 changes: 0 additions & 8 deletions laser_encoders/requirements.txt

This file was deleted.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ requires-python = ">=3.8"
dependencies = [
'sacremoses>=0.1.0',
'sentencepiece>=0.1.99',
'numpy>=1.24',
'torch>=2.0.1',
'numpy>=1.21.3',
'torch>=1.10.0',
'fairseq>=0.12.2',
]

Expand Down
Loading