-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (40 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "encodeval"
version = "0.9"
authors = [
{ name = "Hippolyte Gisserot-Boukhlef", email = "hippolte.gisserotboukhlef@gmail.com" },
{ name = "Nicolas Boizard", email = "nicolas.bzrd@gmail.com" },
{ name = "Duarte Alves", email = "duartemalves@tecnico.ulisboa.pt" },
]
description = "Library to fine-tune and evaluate general purpose pre-trained encoder models."
readme = "README.md"
requires-python = ">=3.11.0"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
dependencies = [
"accelerate==0.34.2",
"configue==5.0.0",
"datasets==2.21.0",
"fire==0.6.0",
"numpy==1.26.3",
"pandas==2.2.3",
"protobuf==6.30.1",
"sentence-transformers==3.4.1",
"sentencepiece==0.2.0",
"tensorboard==2.18.0",
"tiktoken==0.9.0",
"torch==2.2.2",
"transformers==4.48.3",
]
[project.optional-dependencies]
kernel = [
"flash_attn==2.7.4",
]
[project.urls]
Homepage = "https://github.com/hgissbkh/EncodEval"
Issues = "https://github.com/hgissbkh/EncodEval/issues"