@huggingface/tasks 0.19.89 → 0.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,8 +17,8 @@ export declare const EVALUATION_FRAMEWORKS: {
17
17
  readonly description: "Multimodal toolbox for evaluating embeddings and retrieval systems.";
18
18
  readonly url: "https://github.com/embeddings-benchmark/mteb";
19
19
  };
20
- readonly "olmo-bench": {
21
- readonly name: "olmo-bench";
20
+ readonly "olmocr-bench": {
21
+ readonly name: "olmocr-bench";
22
22
  readonly description: "olmOCR-Bench is a framework for evaluating document-level OCR of various tools.";
23
23
  readonly url: "https://github.com/allenai/olmocr/tree/main/olmocr/bench";
24
24
  };
@@ -42,5 +42,10 @@ export declare const EVALUATION_FRAMEWORKS: {
42
42
  readonly description: "SWE-Bench Pro is a challenging benchmark evaluating LLMs/Agents on long-horizon software engineering tasks.";
43
43
  readonly url: "https://github.com/scaleapi/SWE-bench_Pro-os";
44
44
  };
45
+ readonly "nemo-evaluator": {
46
+ readonly name: "nemo-evaluator";
47
+ readonly description: "NeMo Evaluator is an open-source platform for robust, reproducible, and scalable evaluation of Large Language Models across 100+ benchmarks.";
48
+ readonly url: "https://github.com/NVIDIA-NeMo/Evaluator";
49
+ };
45
50
  };
46
51
  //# sourceMappingURL=eval.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"eval.d.ts","sourceRoot":"","sources":["../../src/eval.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0CxB,CAAC"}
1
+ {"version":3,"file":"eval.d.ts","sourceRoot":"","sources":["../../src/eval.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgDxB,CAAC"}
@@ -20,8 +20,8 @@ exports.EVALUATION_FRAMEWORKS = {
20
20
  description: "Multimodal toolbox for evaluating embeddings and retrieval systems.",
21
21
  url: "https://github.com/embeddings-benchmark/mteb",
22
22
  },
23
- "olmo-bench": {
24
- name: "olmo-bench",
23
+ "olmocr-bench": {
24
+ name: "olmocr-bench",
25
25
  description: "olmOCR-Bench is a framework for evaluating document-level OCR of various tools.",
26
26
  url: "https://github.com/allenai/olmocr/tree/main/olmocr/bench",
27
27
  },
@@ -45,4 +45,9 @@ exports.EVALUATION_FRAMEWORKS = {
45
45
  description: "SWE-Bench Pro is a challenging benchmark evaluating LLMs/Agents on long-horizon software engineering tasks.",
46
46
  url: "https://github.com/scaleapi/SWE-bench_Pro-os",
47
47
  },
48
+ "nemo-evaluator": {
49
+ name: "nemo-evaluator",
50
+ description: "NeMo Evaluator is an open-source platform for robust, reproducible, and scalable evaluation of Large Language Models across 100+ benchmarks.",
51
+ url: "https://github.com/NVIDIA-NeMo/Evaluator",
52
+ },
48
53
  };
@@ -0,0 +1,11 @@
1
+ import type { HardwareSpec } from "./hardware.js";
2
+ export interface AmdGpuHardwareSpec extends HardwareSpec {
3
+ /**
4
+ * GFX version / LLVM ISA target (AMD GPUs only), e.g. "gfx1100"
5
+ *
6
+ * potential source https://llvm.org/docs/AMDGPUUsage.html#processors
7
+ */
8
+ gfxVersion: string;
9
+ }
10
+ export declare const AMD_GPU_SKUS: Record<string, AmdGpuHardwareSpec>;
11
+ //# sourceMappingURL=hardware-amd.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hardware-amd.d.ts","sourceRoot":"","sources":["../../src/hardware-amd.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAElD,MAAM,WAAW,kBAAmB,SAAQ,YAAY;IACvD;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,kBAAkB,CA8H3D,CAAC"}
@@ -0,0 +1,130 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AMD_GPU_SKUS = void 0;
4
+ exports.AMD_GPU_SKUS = {
5
+ MI300: {
6
+ tflops: 383.0,
7
+ memory: [192],
8
+ gfxVersion: "gfx942",
9
+ },
10
+ MI250: {
11
+ tflops: 362.1,
12
+ memory: [128],
13
+ gfxVersion: "gfx90a",
14
+ },
15
+ MI210: {
16
+ tflops: 181.0,
17
+ memory: [64],
18
+ gfxVersion: "gfx90a",
19
+ },
20
+ MI100: {
21
+ tflops: 184.6,
22
+ memory: [32],
23
+ gfxVersion: "gfx908",
24
+ },
25
+ MI60: {
26
+ tflops: 29.5,
27
+ memory: [32],
28
+ gfxVersion: "gfx906",
29
+ },
30
+ MI50: {
31
+ tflops: 26.5,
32
+ memory: [16, 32],
33
+ gfxVersion: "gfx906",
34
+ },
35
+ "R9700 PRO": {
36
+ tflops: 95.7,
37
+ memory: [32],
38
+ gfxVersion: "gfx1201",
39
+ },
40
+ "RX 9070 XT": {
41
+ tflops: 97.32,
42
+ memory: [16],
43
+ gfxVersion: "gfx1201",
44
+ },
45
+ "RX 9070": {
46
+ tflops: 72.25,
47
+ memory: [16],
48
+ gfxVersion: "gfx1201",
49
+ },
50
+ "RX 7900 XTX": {
51
+ tflops: 122.8,
52
+ memory: [24],
53
+ gfxVersion: "gfx1100",
54
+ },
55
+ "RX 7900 XT": {
56
+ tflops: 103.0,
57
+ memory: [20],
58
+ gfxVersion: "gfx1100",
59
+ },
60
+ "RX 7900 GRE": {
61
+ tflops: 91.96,
62
+ memory: [16],
63
+ gfxVersion: "gfx1100",
64
+ },
65
+ "RX 7800 XT": {
66
+ tflops: 74.65,
67
+ memory: [16],
68
+ gfxVersion: "gfx1101",
69
+ },
70
+ "RX 7700 XT": {
71
+ tflops: 70.34,
72
+ memory: [12],
73
+ gfxVersion: "gfx1101",
74
+ },
75
+ "RX 7600 XT": {
76
+ tflops: 45.14,
77
+ memory: [16, 8],
78
+ gfxVersion: "gfx1102",
79
+ },
80
+ "RX 6950 XT": {
81
+ tflops: 47.31,
82
+ memory: [16],
83
+ gfxVersion: "gfx1030",
84
+ },
85
+ "RX 6800": {
86
+ tflops: 32.33,
87
+ memory: [16],
88
+ gfxVersion: "gfx1030",
89
+ },
90
+ "RX 6700 XT": {
91
+ tflops: 26.43,
92
+ memory: [12],
93
+ gfxVersion: "gfx1031",
94
+ },
95
+ "RX 6700": {
96
+ tflops: 22.58,
97
+ memory: [10],
98
+ gfxVersion: "gfx1031",
99
+ },
100
+ "RX 6650 XT": {
101
+ tflops: 21.59,
102
+ memory: [8],
103
+ gfxVersion: "gfx1032",
104
+ },
105
+ "RX 6600 XT": {
106
+ tflops: 21.21,
107
+ memory: [8],
108
+ gfxVersion: "gfx1032",
109
+ },
110
+ "RX 6600": {
111
+ tflops: 17.86,
112
+ memory: [8],
113
+ gfxVersion: "gfx1032",
114
+ },
115
+ "RX 5500 XT": {
116
+ tflops: 10.39,
117
+ memory: [4, 8],
118
+ gfxVersion: "gfx1012",
119
+ },
120
+ "Radeon Pro VII": {
121
+ tflops: 26.11,
122
+ memory: [16, 32],
123
+ gfxVersion: "gfx906",
124
+ },
125
+ "Ryzen AI Max+ 395": {
126
+ tflops: 59.4,
127
+ memory: [64, 96, 128],
128
+ gfxVersion: "gfx1151",
129
+ },
130
+ };
@@ -0,0 +1,28 @@
1
+ import type { HardwareSpec } from "./hardware.js";
2
+ export interface NvidiaHardwareSpec extends HardwareSpec {
3
+ /**
4
+ * CUDA Compute Capability (NVIDIA GPUs only)
5
+ *
6
+ * potential source https://developer.nvidia.com/cuda/gpus
7
+ */
8
+ computeCapability: number;
9
+ }
10
+ export declare enum NvidiaComputeCapabilities {
11
+ BLACKWELL_ULTRA = 12.1,
12
+ BLACKWELL_RTX = 12,
13
+ BLACKWELL = 10,
14
+ HOPPER = 9,
15
+ ADA_LOVELACE = 8.9,
16
+ ORIN = 8.7,
17
+ AMPERE_RTX = 8.6,
18
+ AMPERE = 8,
19
+ TURING = 7.5,
20
+ XAVIER = 7.2,
21
+ VOLTA = 7,
22
+ PASCAL_TEGRA = 6.2,
23
+ PASCAL = 6.1,
24
+ PASCAL_DATACENTER = 6,
25
+ MAXWELL = 5.3
26
+ }
27
+ export declare const NVIDIA_SKUS: Record<string, NvidiaHardwareSpec>;
28
+ //# sourceMappingURL=hardware-nvidia.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hardware-nvidia.d.ts","sourceRoot":"","sources":["../../src/hardware-nvidia.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAElD,MAAM,WAAW,kBAAmB,SAAQ,YAAY;IACvD;;;;OAIG;IACH,iBAAiB,EAAE,MAAM,CAAC;CAC1B;AAED,oBAAY,yBAAyB;IACpC,eAAe,OAAO;IACtB,aAAa,KAAO;IACpB,SAAS,KAAO;IAChB,MAAM,IAAM;IACZ,YAAY,MAAM;IAClB,IAAI,MAAM;IACV,UAAU,MAAM;IAChB,MAAM,IAAM;IACZ,MAAM,MAAM;IACZ,MAAM,MAAM;IACZ,KAAK,IAAM;IACX,YAAY,MAAM;IAClB,MAAM,MAAM;IACZ,iBAAiB,IAAM;IACvB,OAAO,MAAM;CACb;AAED,eAAO,MAAM,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,kBAAkB,CA8gB1D,CAAC"}