Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Syntactic Tools
combo
Commits
290a71af
Commit
290a71af
authored
Jan 18, 2021
by
Mateusz Klimaszewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Release 1.0.0.
parent
c053d5ee
Pipeline
#2316
passed with stage
in 4 minutes and 9 seconds
Changes
3
Pipelines
4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
5 deletions
+6
-5
README.md
README.md
+1
-1
docs/installation.md
docs/installation.md
+3
-3
setup.py
setup.py
+2
-1
No files found.
README.md
View file @
290a71af
...
...
@@ -13,7 +13,7 @@
Clone this repository and install COMBO (we suggest creating a virtualenv/conda environment with Python 3.6+, as a bundle of required packages will be installed):
```
bash
pip
install
-U
pip setuptools wheel
pip
install
--index-url
https://pypi.clarin-pl.eu/simple combo
pip
install
--index-url
https://pypi.clarin-pl.eu/simple
combo
==
1.0.0
```
Run the following commands in your Python console to make predictions with a pre-trained model:
```
python
...
...
docs/installation.md
View file @
290a71af
...
...
@@ -2,7 +2,7 @@
Clone this repository and install COMBO (we suggest using virtualenv/conda with Python 3.6+):
```
bash
pip
install
-U
pip setuptools wheel
pip
install
--index-url
https://pypi.clarin-pl.eu/simple combo
pip
install
--index-url
https://pypi.clarin-pl.eu/simple
combo
==
1.0.0
combo
--helpfull
```
...
...
@@ -11,7 +11,7 @@ combo --helpfull
python
-m
venv venv
source
venv/bin/activate
pip
install
-U
pip setuptools wheel
pip
install
--index-url
https://pypi.clarin-pl.eu/simple combo
pip
install
--index-url
https://pypi.clarin-pl.eu/simple
combo
==
1.0.0
```
## Problems & solutions
...
...
@@ -21,7 +21,7 @@ Run `conda install -c conda-forge jsonnet=0.15.0` and re-run installation.
*
No package 'sentencepiece' found
Run
`pip install sentencepiece`
and re-run installation.
Run
`pip install sentencepiece
==0.1.83
`
and re-run installation.
*
Missing Cython error
...
...
setup.py
View file @
290a71af
...
...
@@ -10,6 +10,7 @@ REQUIREMENTS = [
'numpy==1.19.4'
,
'overrides==3.1.0'
,
'requests==2.23.0'
,
'sentencepiece==0.1.83'
,
'spacy==2.3.2'
,
'scikit-learn<=0.23.2'
,
'torch==1.6.0'
,
...
...
@@ -20,7 +21,7 @@ REQUIREMENTS = [
setup
(
name
=
'combo'
,
version
=
'1.0.0
b4
'
,
version
=
'1.0.0'
,
author
=
'Mateusz Klimaszewski'
,
author_email
=
'M.Klimaszewski@ii.pw.edu.pl'
,
install_requires
=
REQUIREMENTS
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment