Skip to content
Snippets Groups Projects
Select Git revision
  • f52e60aec43074f368e47e2773329cc03e900369
  • main default protected
  • ud_training_script
  • fix_seed
  • merged-with-ner
  • multiword_fix_transformer
  • transformer_encoder
  • combo3
  • save_deprel_matrix_to_npz
  • master protected
  • combo-lambo
  • lambo-sent-attributes
  • adding_lambo
  • develop
  • update_allenlp2
  • develop_tmp
  • tokens_truncation
  • LR_test
  • eud_iwpt
  • iob
  • eud_iwpt_shared_task_bert_finetuning
  • 3.3.1
  • list
  • 3.2.1
  • 3.0.3
  • 3.0.1
  • 3.0.0
  • v1.0.6
  • v1.0.5
  • v1.0.4
  • v1.0.3
  • v1.0.2
  • v1.0.1
  • v1.0.0
34 results

setup.cfg

Blame
  • Dockerfile 1.34 KiB
    FROM nvidia/cuda:11.1.1-devel-ubuntu20.04
    WORKDIR /app
    
    RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata  \
        && apt-get install -y software-properties-common curl
    RUN add-apt-repository ppa:deadsnakes/ppa && apt-get update && apt-get install -y python3.8 python3-pip ffmpeg
    RUN alias python='python3' && alias pip='pip3' && pip install poetry
    
    ADD poetry.lock ./
    ADD pyproject.toml ./
    ADD README.rst ./
    ADD sziszapangma/ sziszapangma/
    ADD experiment/ experiment/
    ADD new_datasets/ new_datasets/
    
    RUN ls -l
    
    #RUN #poetry config virtualenvs.create false --local
    
    RUN poetry install
    
    RUN poetry run python -m spacy download de_core_news_lg
    RUN poetry run python -m spacy download pl_core_news_lg
    RUN poetry run python -m spacy download en_core_web_lg
    RUN poetry run python -m spacy download it_core_news_lg
    RUN poetry run python -m spacy download nl_core_news_lg
    RUN poetry run python -m spacy download sp_core_news_lg
    RUN poetry run python -m spacy download es_core_news_lg
    
    poetry run python -m spacy download de_core_news_lg
    poetry run python -m spacy download pl_core_news_lg
    poetry run python -m spacy download en_core_web_lg
    poetry run python -m spacy download it_core_news_lg
    poetry run python -m spacy download nl_core_news_lg
    poetry run python -m spacy download sp_core_news_lg
    poetry run python -m spacy download es_core_news_lg