ThomasTheMaker commited on
Commit
bcd4415
·
verified ·
1 Parent(s): f13e52e

Delete pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +0 -33
pyproject.toml DELETED
@@ -1,33 +0,0 @@
1
- [tool.poetry]
2
- name = "pico-train"
3
- version = "1.0.0"
4
- description = "A minimalistic framework for transparently training language models and storing comprehensive checkpoints for in-depth learning dynamics research"
5
- authors = ["Richard Diehl Martinez <richard@picolm.io>"]
6
- license = "Apache 2.0"
7
- readme = "README.md"
8
- packages = [{include = "src"}]
9
-
10
- [tool.poetry.scripts]
11
- train = "scripts.train:main"
12
-
13
- [tool.poetry.dependencies]
14
- python = "^3.10,<3.13"
15
- lightning = "^2.4.0"
16
- click = "^8.1.7"
17
- wandb = "^0.18.1"
18
- huggingface-hub = {extras = ["cli"], version = "^0.25.1"}
19
- datasets = "^3.0.1,<3.2.0"
20
- transformers = "^4.45.2"
21
- pre-commit = "^4.0.1"
22
- torch = "^2.5.1"
23
- evaluate = "^0.4.3"
24
- deepspeed = "^0.16.2"
25
- rich = "^13.9.4"
26
-
27
- [tool.poetry.group.dev.dependencies]
28
- ipykernel = "^6.29.5"
29
- jupyter = "^1.1.1"
30
-
31
- [build-system]
32
- requires = ["poetry-core"]
33
- build-backend = "poetry.core.masonry.api"