pixi.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. [project]
  2. authors = ["Matthew Feickert <matthew.feickert@cern.ch>"]
  3. channels = ["conda-forge"]
  4. name = "LLMs-from-scratch"
  5. platforms = ["linux-64", "osx-arm64", "win-64"]
  6. version = "0.1.0"
  7. [tasks]
  8. [dependencies]
  9. python = "3.10.*"
  10. pytorch-cpu = ">=2.6.0,<3"
  11. jupyterlab = ">=4.3.5,<5"
  12. tiktoken = ">=0.9.0,<0.10"
  13. matplotlib = ">=3.10.0,<4"
  14. tqdm = ">=4.67.1,<5"
  15. pandas = ">=2.2.3,<3"
  16. numpy = ">=1.26,<2.1"
  17. psutil = ">=5.9.5,<7"
  18. [pypi-dependencies]
  19. # The TensorFlow team unfortunately does not maintain the conda-forge
  20. # feedstock and it is currently broken for TensorFlow v2.18.0
  21. tensorflow = ">=2.18.0, <3"
  22. llms-from-scratch = { path = ".", editable = true }
  23. [target.win-64.pypi-dependencies]
  24. tensorflow-cpu = ">=2.18.0, <3"
  25. [feature.tests.dependencies]
  26. blobfile = ">=3.0.0,<4"
  27. huggingface_hub = ">=0.30.0,<1.0"
  28. ipywidgets = ">=8.1.2,<9"
  29. safetensors = ">=0.4.4,<0.6"
  30. sentencepiece = ">=0.1.99,<0.3"
  31. transformers = ">=4.33.2,<5"
  32. pytest = ">=8.3.4,<9"
  33. nbval = ">=0.11.0,<0.12"
  34. [feature.tests.pypi-dependencies]
  35. pytest-ruff = ">=0.4.1, <0.5"
  36. [feature.tests.target.win-64.pypi-dependencies]
  37. tensorflow-io-gcs-filesystem = "==0.31.0"
  38. [environments]
  39. tests = ["tests"]