Skip to content
Snippets Groups Projects
Select Git revision
  • 49ed26bea2e00a61c0bd9d64d08466f265e612f6
  • master default protected
  • vertical_relations
  • lu_without_semantic_frames
  • hierarchy
  • additional-unification-filters
  • v0.1.1
  • v0.1.0
  • v0.0.9
  • v0.0.8
  • v0.0.7
  • v0.0.6
  • v0.0.5
  • v0.0.4
  • v0.0.3
  • v0.0.2
  • v0.0.1
17 results

PreprocessSemantics.py

Blame
  • pyproject.toml 1.43 KiB
    [tool.poetry]
    name = "asr-benchmarks"
    version = "0.0.1"
    description = "Library to benchmark ASR systems"
    authors = [
        "Piotr Szymański <niedakh@gmail.com>",
        "Marcin Wątroba <markowanga@gmail.com>"
    ]
    license = "MIT license"
    packages = [
        { include = "sziszapangma" }
    ]
    
    [tool.poetry.dependencies]
    python = "^3.8"
    numpy = "^1.20.1"
    requests = "^2.25.1"
    pandas = "^1.2.4"
    #fasttext = "^0.9.2"
    pymongo = "^3.11.4"
    Flask = "^2.0.1"
    Flask-HTTPAuth = "^4.4.0"
    minio = "^7.1.6"
    dvc = {extras = ["s3"], version = "^2.10.1"}
    spacy = "^3.2.4"
    PySoundFile = "^0.9.0"
    datasets = "^2.3.2"
    torchaudio = "^0.11.0"
    librosa = "^0.9.1"
    flair = "^0.11.3"
    
    [tool.poetry.dev-dependencies]
    pytest = "^5.2"
    mypy = "^0.812"
    black = "^20.8b1"
    typing-extensions = "^3.7.4"
    isort = { version = "^5.9.1", extras = ["pyproject"] }
    pyflakes = "2.3.1"
    poethepoet = "^0.10.0"
    
    [tool.poe.tasks]
    black = "black -v --check sziszapangma"
    isort = "isort sziszapangma  -c"
    pyflakes = "pyflakes sziszapangma"
    mypy = "mypy sziszapangma"
    test = "pytest"
    check = ["black", "isort", "mypy", "pyflakes"]
    all = ["check", "test"]
    
    [tool.poetry.extras]
    developer = ["black", "mypy", "typing-extensions"]
    
    [build-system]
    requires = ["poetry>=1.1.5"]
    build-backend = "poetry.masonry.api"
    
    [mypy]
    python_version = 3.8
    
    [pytest]
    testpaths = "tests"
    
    [tool.black]
    line-length = 100
    
    [tool.isort]
    line_length = 100
    known_first_party = 'embeddings'
    known_third_party = ["click", "pytest"]
    profile = "black"