Skip to content
Open
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
11 changes: 6 additions & 5 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
pwd
conda create -n dackar_libs python=3.11
conda init bash && source ~/.bashrc && conda activate dackar_libs
pip install spacy==3.5 stumpy textacy matplotlib nltk coreferee beautifulsoup4 networkx pysbd tomli numerizer autocorrect pywsd openpyxl quantulum3[classifier] numpy==1.26 scikit-learn pyspellchecker contextualSpellCheck pandas wordcloud jsonschema toml
pip install spacy==3.5 stumpy textacy matplotlib nltk==3.8.1 coreferee beautifulsoup4 networkx pysbd tomli numerizer autocorrect pywsd openpyxl quantulum3[classifier] numpy==1.26 scikit-learn pyspellchecker contextualSpellCheck pandas wordcloud jsonschema toml
pip install neo4j jupyterlab
pip install pytest
# python -m spacy download en_core_web_lg [for some reason, GitHub machine complains this command]
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
pwd
conda create -n dackar_libs python=3.11
conda init zsh && source ~/.zshrc && conda activate dackar_libs
pip install spacy==3.5 stumpy textacy matplotlib nltk coreferee beautifulsoup4 networkx pysbd tomli numerizer autocorrect pywsd openpyxl quantulum3[classifier] numpy==1.26 scikit-learn pyspellchecker contextualSpellCheck pandas wordcloud jsonschema toml
pip install spacy==3.5 stumpy textacy matplotlib nltk==3.8.1 coreferee beautifulsoup4 networkx pysbd tomli numerizer autocorrect pywsd openpyxl quantulum3[classifier] numpy==1.26 scikit-learn pyspellchecker contextualSpellCheck pandas wordcloud jsonschema toml
pip install neo4j jupyterlab
pip install pytest

Expand Down Expand Up @@ -127,25 +127,26 @@ jobs:
- name: Fetch and Branch
uses: actions/checkout@v3

# Fix PyTorch to 2.8.0 due to issue: https://github.com/pytorch/pytorch/issues/166628
- name: Install DACKAR Required Libraries
run: |
echo " Create dackar_libs"
conda install python=3.11
echo " Conda information"
conda info
echo " Activate Dackar conda environment"
pip install spacy==3.5 stumpy textacy matplotlib nltk coreferee beautifulsoup4 networkx pysbd tomli numerizer autocorrect pywsd openpyxl quantulum3[classifier] numpy==1.26 scikit-learn pyspellchecker contextualSpellCheck pandas wordcloud jsonschema toml
pip install torch==2.8.0 spacy==3.5 stumpy textacy matplotlib nltk==3.8.1 coreferee beautifulsoup4 networkx pysbd tomli numerizer autocorrect pywsd openpyxl quantulum3[classifier] numpy==1.26 scikit-learn pyspellchecker contextualSpellCheck pandas wordcloud jsonschema toml
pip install neo4j jupyterlab
pip install pytest
pip uninstall numba llvmlite
pip install --no-cache-dir numba==0.61 llvmlite==0.44
conda list
which python
pip install https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.5.0/en_core_web_lg-3.5.0-py3-none-any.whl
python -m coreferee install en
python -m nltk.downloader all
quantulum3-training -s

# pip uninstall numba llvmlite
# pip install --no-cache-dir numba==0.61 llvmlite==0.44
# python -m spacy download en_core_web_lg [for some reason, GitHub machine complains this command]
# python -m spacy download en_core_web_lg
# pip install numba
Expand Down
Loading