Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
combo
Manage
Activity
Members
Labels
Plan
Issues
20
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Syntactic Tools
combo
Commits
179c15ed
Commit
179c15ed
authored
4 years ago
by
Mateusz Klimaszewski
Browse files
Options
Downloads
Patches
Plain Diff
Fix sentencepiece version per python version.
parent
290a71af
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!28
Release 1.0.1.
,
!27
Release 1.0.1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/installation.md
+3
-1
3 additions, 1 deletion
docs/installation.md
setup.py
+2
-1
2 additions, 1 deletion
setup.py
with
5 additions
and
2 deletions
docs/installation.md
+
3
−
1
View file @
179c15ed
...
...
@@ -21,7 +21,9 @@ Run `conda install -c conda-forge jsonnet=0.15.0` and re-run installation.
*
No package 'sentencepiece' found
Run
`pip install sentencepiece==0.1.83`
and re-run installation.
Run
`pip install sentencepiece==0.1.83`
for Python < 3.8 and re-run installation.
Run
`pip install sentencepiece==0.1.85`
for Python >= 3.8 and re-run installation.
*
Missing Cython error
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
2
−
1
View file @
179c15ed
...
...
@@ -10,7 +10,8 @@ REQUIREMENTS = [
'
numpy==1.19.4
'
,
'
overrides==3.1.0
'
,
'
requests==2.23.0
'
,
'
sentencepiece==0.1.83
'
,
'
sentencepiece==0.1.83;python_version<
"
3.8
"'
,
'
sentencepiece==0.1.85;python_version>=
"
3.8
"'
,
'
spacy==2.3.2
'
,
'
scikit-learn<=0.23.2
'
,
'
torch==1.6.0
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment