Upload folder using huggingface_hub
Browse files- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/.hydra/config.yaml +94 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/.hydra/hydra.yaml +175 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/.hydra/overrides.yaml +2 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/benchmark_report.json +107 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/cli.log +113 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/error.log +178 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/experiment_config.json +107 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/forward_codecarbon.json +33 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/preprocess_codecarbon.json +33 -0
runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/.hydra/config.yaml
ADDED
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
backend:
|
2 |
+
name: pytorch
|
3 |
+
version: 2.4.0
|
4 |
+
_target_: optimum_benchmark.backends.pytorch.backend.PyTorchBackend
|
5 |
+
task: text-classification
|
6 |
+
model: distilbert/distilbert-base-uncased-finetuned-sst-2-english
|
7 |
+
processor: distilbert/distilbert-base-uncased-finetuned-sst-2-english
|
8 |
+
library: null
|
9 |
+
device: cuda
|
10 |
+
device_ids: '0'
|
11 |
+
seed: 42
|
12 |
+
inter_op_num_threads: null
|
13 |
+
intra_op_num_threads: null
|
14 |
+
hub_kwargs: {}
|
15 |
+
no_weights: true
|
16 |
+
device_map: null
|
17 |
+
torch_dtype: null
|
18 |
+
amp_autocast: false
|
19 |
+
amp_dtype: null
|
20 |
+
eval_mode: true
|
21 |
+
to_bettertransformer: false
|
22 |
+
low_cpu_mem_usage: null
|
23 |
+
attn_implementation: null
|
24 |
+
cache_implementation: null
|
25 |
+
torch_compile: false
|
26 |
+
torch_compile_config: {}
|
27 |
+
quantization_scheme: null
|
28 |
+
quantization_config: {}
|
29 |
+
deepspeed_inference: false
|
30 |
+
deepspeed_inference_config: {}
|
31 |
+
peft_type: null
|
32 |
+
peft_config: {}
|
33 |
+
launcher:
|
34 |
+
name: process
|
35 |
+
_target_: optimum_benchmark.launchers.process.launcher.ProcessLauncher
|
36 |
+
device_isolation: true
|
37 |
+
device_isolation_action: warn
|
38 |
+
start_method: spawn
|
39 |
+
benchmark:
|
40 |
+
name: energy_star
|
41 |
+
_target_: optimum_benchmark.benchmarks.energy_star.benchmark.EnergyStarBenchmark
|
42 |
+
dataset_name: EnergyStarAI/text_classification
|
43 |
+
dataset_config: ''
|
44 |
+
dataset_split: train
|
45 |
+
num_samples: 1000
|
46 |
+
input_shapes:
|
47 |
+
batch_size: 1
|
48 |
+
text_column_name: text
|
49 |
+
truncation: true
|
50 |
+
max_length: -1
|
51 |
+
dataset_prefix1: ''
|
52 |
+
dataset_prefix2: ''
|
53 |
+
t5_task: ''
|
54 |
+
image_column_name: image
|
55 |
+
resize: false
|
56 |
+
question_column_name: question
|
57 |
+
context_column_name: context
|
58 |
+
sentence1_column_name: sentence1
|
59 |
+
sentence2_column_name: sentence2
|
60 |
+
audio_column_name: audio
|
61 |
+
iterations: 10
|
62 |
+
warmup_runs: 10
|
63 |
+
energy: true
|
64 |
+
forward_kwargs: {}
|
65 |
+
generate_kwargs: {}
|
66 |
+
call_kwargs: {}
|
67 |
+
experiment_name: text_classification
|
68 |
+
environment:
|
69 |
+
cpu: ' AMD EPYC 7R32'
|
70 |
+
cpu_count: 48
|
71 |
+
cpu_ram_mb: 200472.73984
|
72 |
+
system: Linux
|
73 |
+
machine: x86_64
|
74 |
+
platform: Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35
|
75 |
+
processor: x86_64
|
76 |
+
python_version: 3.9.20
|
77 |
+
gpu:
|
78 |
+
- NVIDIA A10G
|
79 |
+
gpu_count: 1
|
80 |
+
gpu_vram_mb: 24146608128
|
81 |
+
optimum_benchmark_version: 0.2.0
|
82 |
+
optimum_benchmark_commit: null
|
83 |
+
transformers_version: 4.44.0
|
84 |
+
transformers_commit: null
|
85 |
+
accelerate_version: 0.33.0
|
86 |
+
accelerate_commit: null
|
87 |
+
diffusers_version: 0.30.0
|
88 |
+
diffusers_commit: null
|
89 |
+
optimum_version: null
|
90 |
+
optimum_commit: null
|
91 |
+
timm_version: null
|
92 |
+
timm_commit: null
|
93 |
+
peft_version: null
|
94 |
+
peft_commit: null
|
runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/.hydra/hydra.yaml
ADDED
@@ -0,0 +1,175 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
hydra:
|
2 |
+
run:
|
3 |
+
dir: ./runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38
|
4 |
+
sweep:
|
5 |
+
dir: sweeps/${experiment_name}/${now:%Y-%m-%d-%H-%M-%S}
|
6 |
+
subdir: ${hydra.job.num}
|
7 |
+
launcher:
|
8 |
+
_target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher
|
9 |
+
sweeper:
|
10 |
+
_target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper
|
11 |
+
max_batch_size: null
|
12 |
+
params: null
|
13 |
+
help:
|
14 |
+
app_name: ${hydra.job.name}
|
15 |
+
header: '${hydra.help.app_name} is powered by Hydra.
|
16 |
+
|
17 |
+
'
|
18 |
+
footer: 'Powered by Hydra (https://hydra.cc)
|
19 |
+
|
20 |
+
Use --hydra-help to view Hydra specific help
|
21 |
+
|
22 |
+
'
|
23 |
+
template: '${hydra.help.header}
|
24 |
+
|
25 |
+
== Configuration groups ==
|
26 |
+
|
27 |
+
Compose your configuration from those groups (group=option)
|
28 |
+
|
29 |
+
|
30 |
+
$APP_CONFIG_GROUPS
|
31 |
+
|
32 |
+
|
33 |
+
== Config ==
|
34 |
+
|
35 |
+
Override anything in the config (foo.bar=value)
|
36 |
+
|
37 |
+
|
38 |
+
$CONFIG
|
39 |
+
|
40 |
+
|
41 |
+
${hydra.help.footer}
|
42 |
+
|
43 |
+
'
|
44 |
+
hydra_help:
|
45 |
+
template: 'Hydra (${hydra.runtime.version})
|
46 |
+
|
47 |
+
See https://hydra.cc for more info.
|
48 |
+
|
49 |
+
|
50 |
+
== Flags ==
|
51 |
+
|
52 |
+
$FLAGS_HELP
|
53 |
+
|
54 |
+
|
55 |
+
== Configuration groups ==
|
56 |
+
|
57 |
+
Compose your configuration from those groups (For example, append hydra/job_logging=disabled
|
58 |
+
to command line)
|
59 |
+
|
60 |
+
|
61 |
+
$HYDRA_CONFIG_GROUPS
|
62 |
+
|
63 |
+
|
64 |
+
Use ''--cfg hydra'' to Show the Hydra config.
|
65 |
+
|
66 |
+
'
|
67 |
+
hydra_help: ???
|
68 |
+
hydra_logging:
|
69 |
+
version: 1
|
70 |
+
formatters:
|
71 |
+
colorlog:
|
72 |
+
(): colorlog.ColoredFormatter
|
73 |
+
format: '[%(cyan)s%(asctime)s%(reset)s][%(purple)sHYDRA%(reset)s] %(message)s'
|
74 |
+
handlers:
|
75 |
+
console:
|
76 |
+
class: logging.StreamHandler
|
77 |
+
formatter: colorlog
|
78 |
+
stream: ext://sys.stdout
|
79 |
+
root:
|
80 |
+
level: INFO
|
81 |
+
handlers:
|
82 |
+
- console
|
83 |
+
disable_existing_loggers: false
|
84 |
+
job_logging:
|
85 |
+
version: 1
|
86 |
+
formatters:
|
87 |
+
simple:
|
88 |
+
format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s'
|
89 |
+
colorlog:
|
90 |
+
(): colorlog.ColoredFormatter
|
91 |
+
format: '[%(cyan)s%(asctime)s%(reset)s][%(blue)s%(name)s%(reset)s][%(log_color)s%(levelname)s%(reset)s]
|
92 |
+
- %(message)s'
|
93 |
+
log_colors:
|
94 |
+
DEBUG: purple
|
95 |
+
INFO: green
|
96 |
+
WARNING: yellow
|
97 |
+
ERROR: red
|
98 |
+
CRITICAL: red
|
99 |
+
handlers:
|
100 |
+
console:
|
101 |
+
class: logging.StreamHandler
|
102 |
+
formatter: colorlog
|
103 |
+
stream: ext://sys.stdout
|
104 |
+
file:
|
105 |
+
class: logging.FileHandler
|
106 |
+
formatter: simple
|
107 |
+
filename: ${hydra.job.name}.log
|
108 |
+
root:
|
109 |
+
level: INFO
|
110 |
+
handlers:
|
111 |
+
- console
|
112 |
+
- file
|
113 |
+
disable_existing_loggers: false
|
114 |
+
env: {}
|
115 |
+
mode: RUN
|
116 |
+
searchpath: []
|
117 |
+
callbacks: {}
|
118 |
+
output_subdir: .hydra
|
119 |
+
overrides:
|
120 |
+
hydra:
|
121 |
+
- hydra.run.dir=./runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38
|
122 |
+
- hydra.mode=RUN
|
123 |
+
task:
|
124 |
+
- backend.model=distilbert/distilbert-base-uncased-finetuned-sst-2-english
|
125 |
+
- backend.processor=distilbert/distilbert-base-uncased-finetuned-sst-2-english
|
126 |
+
job:
|
127 |
+
name: cli
|
128 |
+
chdir: true
|
129 |
+
override_dirname: backend.model=distilbert/distilbert-base-uncased-finetuned-sst-2-english,backend.processor=distilbert/distilbert-base-uncased-finetuned-sst-2-english
|
130 |
+
id: ???
|
131 |
+
num: ???
|
132 |
+
config_name: text_classification
|
133 |
+
env_set:
|
134 |
+
OVERRIDE_BENCHMARKS: '1'
|
135 |
+
env_copy: []
|
136 |
+
config:
|
137 |
+
override_dirname:
|
138 |
+
kv_sep: '='
|
139 |
+
item_sep: ','
|
140 |
+
exclude_keys: []
|
141 |
+
runtime:
|
142 |
+
version: 1.3.2
|
143 |
+
version_base: '1.3'
|
144 |
+
cwd: /
|
145 |
+
config_sources:
|
146 |
+
- path: hydra.conf
|
147 |
+
schema: pkg
|
148 |
+
provider: hydra
|
149 |
+
- path: optimum_benchmark
|
150 |
+
schema: pkg
|
151 |
+
provider: main
|
152 |
+
- path: hydra_plugins.hydra_colorlog.conf
|
153 |
+
schema: pkg
|
154 |
+
provider: hydra-colorlog
|
155 |
+
- path: /optimum-benchmark/examples/energy_star
|
156 |
+
schema: file
|
157 |
+
provider: command-line
|
158 |
+
- path: ''
|
159 |
+
schema: structured
|
160 |
+
provider: schema
|
161 |
+
output_dir: /runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38
|
162 |
+
choices:
|
163 |
+
benchmark: energy_star
|
164 |
+
launcher: process
|
165 |
+
backend: pytorch
|
166 |
+
hydra/env: default
|
167 |
+
hydra/callbacks: null
|
168 |
+
hydra/job_logging: colorlog
|
169 |
+
hydra/hydra_logging: colorlog
|
170 |
+
hydra/hydra_help: default
|
171 |
+
hydra/help: default
|
172 |
+
hydra/sweeper: basic
|
173 |
+
hydra/launcher: basic
|
174 |
+
hydra/output: default
|
175 |
+
verbose: false
|
runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/.hydra/overrides.yaml
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
- backend.model=distilbert/distilbert-base-uncased-finetuned-sst-2-english
|
2 |
+
- backend.processor=distilbert/distilbert-base-uncased-finetuned-sst-2-english
|
runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/benchmark_report.json
ADDED
@@ -0,0 +1,107 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"forward": {
|
3 |
+
"memory": null,
|
4 |
+
"latency": null,
|
5 |
+
"throughput": null,
|
6 |
+
"energy": {
|
7 |
+
"unit": "kWh",
|
8 |
+
"cpu": 4.308544051501992e-05,
|
9 |
+
"ram": 3.468104217157342e-07,
|
10 |
+
"gpu": 0.00017021119172446752,
|
11 |
+
"total": 0.00021364344266120317
|
12 |
+
},
|
13 |
+
"efficiency": {
|
14 |
+
"unit": "samples/kWh",
|
15 |
+
"value": 4680695.964939139
|
16 |
+
},
|
17 |
+
"measures": [
|
18 |
+
{
|
19 |
+
"unit": "kWh",
|
20 |
+
"cpu": 4.7642406853628935e-05,
|
21 |
+
"ram": 3.835464916165486e-07,
|
22 |
+
"gpu": 0.0001857098707898075,
|
23 |
+
"total": 0.00023373582413505298
|
24 |
+
},
|
25 |
+
{
|
26 |
+
"unit": "kWh",
|
27 |
+
"cpu": 4.830923456934721e-05,
|
28 |
+
"ram": 3.889706214879221e-07,
|
29 |
+
"gpu": 0.00018184264547427276,
|
30 |
+
"total": 0.00023054085066510785
|
31 |
+
},
|
32 |
+
{
|
33 |
+
"unit": "kWh",
|
34 |
+
"cpu": 4.745269314658396e-05,
|
35 |
+
"ram": 3.82079658902099e-07,
|
36 |
+
"gpu": 0.0001864126491302187,
|
37 |
+
"total": 0.00023424742193570473
|
38 |
+
},
|
39 |
+
{
|
40 |
+
"unit": "kWh",
|
41 |
+
"cpu": 4.7065855620207414e-05,
|
42 |
+
"ram": 3.786303629137515e-07,
|
43 |
+
"gpu": 0.00018731737207611232,
|
44 |
+
"total": 0.00023476185805923347
|
45 |
+
},
|
46 |
+
{
|
47 |
+
"unit": "kWh",
|
48 |
+
"cpu": 4.798764077624786e-05,
|
49 |
+
"ram": 3.863854622534725e-07,
|
50 |
+
"gpu": 0.00018574709304175485,
|
51 |
+
"total": 0.00023412111928025603
|
52 |
+
},
|
53 |
+
{
|
54 |
+
"unit": "kWh",
|
55 |
+
"cpu": 4.75809527627765e-05,
|
56 |
+
"ram": 3.8291184942873067e-07,
|
57 |
+
"gpu": 0.0001922545982480095,
|
58 |
+
"total": 0.00024021846286021472
|
59 |
+
},
|
60 |
+
{
|
61 |
+
"unit": "kWh",
|
62 |
+
"cpu": 0.0,
|
63 |
+
"ram": 0.0,
|
64 |
+
"gpu": 0.0,
|
65 |
+
"total": 0.0
|
66 |
+
},
|
67 |
+
{
|
68 |
+
"unit": "kWh",
|
69 |
+
"cpu": 4.817900807627465e-05,
|
70 |
+
"ram": 3.879310599453119e-07,
|
71 |
+
"gpu": 0.00019457293343672077,
|
72 |
+
"total": 0.00024313987257294084
|
73 |
+
},
|
74 |
+
{
|
75 |
+
"unit": "kWh",
|
76 |
+
"cpu": 4.826213982386335e-05,
|
77 |
+
"ram": 3.883300188376821e-07,
|
78 |
+
"gpu": 0.0001941540442116363,
|
79 |
+
"total": 0.0002428045140543374
|
80 |
+
},
|
81 |
+
{
|
82 |
+
"unit": "kWh",
|
83 |
+
"cpu": 4.8374473521269295e-05,
|
84 |
+
"ram": 3.89318691771824e-07,
|
85 |
+
"gpu": 0.00019410071083614255,
|
86 |
+
"total": 0.00024286450304918366
|
87 |
+
}
|
88 |
+
]
|
89 |
+
},
|
90 |
+
"preprocess": {
|
91 |
+
"memory": null,
|
92 |
+
"latency": null,
|
93 |
+
"throughput": null,
|
94 |
+
"energy": {
|
95 |
+
"unit": "kWh",
|
96 |
+
"cpu": 5.042474785700001e-06,
|
97 |
+
"ram": 3.2051920005208315e-08,
|
98 |
+
"gpu": 7.707506165743894e-06,
|
99 |
+
"total": 1.2782032871449104e-05
|
100 |
+
},
|
101 |
+
"efficiency": {
|
102 |
+
"unit": "samples/kWh",
|
103 |
+
"value": 78234816.7977
|
104 |
+
},
|
105 |
+
"measures": null
|
106 |
+
}
|
107 |
+
}
|
runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/cli.log
ADDED
@@ -0,0 +1,113 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[2024-10-08 17:58:41,047][launcher][INFO] - ََAllocating process launcher
|
2 |
+
[2024-10-08 17:58:41,047][process][INFO] - + Setting multiprocessing start method to spawn.
|
3 |
+
[2024-10-08 17:58:41,059][device-isolation][INFO] - + Launched device(s) isolation process 180
|
4 |
+
[2024-10-08 17:58:41,060][device-isolation][INFO] - + Isolating device(s) [0]
|
5 |
+
[2024-10-08 17:58:41,066][process][INFO] - + Launched benchmark in isolated process 181.
|
6 |
+
[PROC-0][2024-10-08 17:58:43,712][datasets][INFO] - PyTorch version 2.4.0 available.
|
7 |
+
[PROC-0][2024-10-08 17:58:44,652][backend][INFO] - َAllocating pytorch backend
|
8 |
+
[PROC-0][2024-10-08 17:58:44,652][backend][INFO] - + Setting random seed to 42
|
9 |
+
[PROC-0][2024-10-08 17:58:45,130][pytorch][INFO] - + Using AutoModel class AutoModelForSequenceClassification
|
10 |
+
[PROC-0][2024-10-08 17:58:45,131][pytorch][INFO] - + Creating backend temporary directory
|
11 |
+
[PROC-0][2024-10-08 17:58:45,131][pytorch][INFO] - + Loading model with random weights
|
12 |
+
[PROC-0][2024-10-08 17:58:45,131][pytorch][INFO] - + Creating no weights model
|
13 |
+
[PROC-0][2024-10-08 17:58:45,131][pytorch][INFO] - + Creating no weights model directory
|
14 |
+
[PROC-0][2024-10-08 17:58:45,131][pytorch][INFO] - + Creating no weights model state dict
|
15 |
+
[PROC-0][2024-10-08 17:58:45,133][pytorch][INFO] - + Saving no weights model safetensors
|
16 |
+
[PROC-0][2024-10-08 17:58:45,133][pytorch][INFO] - + Saving no weights model pretrained config
|
17 |
+
[PROC-0][2024-10-08 17:58:45,134][pytorch][INFO] - + Loading no weights AutoModel
|
18 |
+
[PROC-0][2024-10-08 17:58:45,134][pytorch][INFO] - + Loading model directly on device: cuda
|
19 |
+
[PROC-0][2024-10-08 17:58:45,291][pytorch][INFO] - + Turning on model's eval mode
|
20 |
+
[PROC-0][2024-10-08 17:58:45,297][benchmark][INFO] - Allocating energy_star benchmark
|
21 |
+
[PROC-0][2024-10-08 17:58:45,297][energy_star][INFO] - + Loading raw dataset
|
22 |
+
[PROC-0][2024-10-08 17:58:45,895][energy_star][INFO] - + Initializing Inference report
|
23 |
+
[PROC-0][2024-10-08 17:58:45,895][energy][INFO] - + Tracking GPU energy on devices [0]
|
24 |
+
[PROC-0][2024-10-08 17:58:50,071][energy_star][INFO] - + Preprocessing dataset
|
25 |
+
[PROC-0][2024-10-08 17:58:50,499][energy][INFO] - + Saving codecarbon emission data to preprocess_codecarbon.json
|
26 |
+
[PROC-0][2024-10-08 17:58:50,500][energy_star][INFO] - + Preparing backend for Inference
|
27 |
+
[PROC-0][2024-10-08 17:58:50,500][energy_star][INFO] - + Initialising dataloader
|
28 |
+
[PROC-0][2024-10-08 17:58:50,500][energy_star][INFO] - + Warming up backend for Inference
|
29 |
+
[PROC-0][2024-10-08 17:58:50,990][energy_star][INFO] - + Running Inference energy tracking for 10 iterations
|
30 |
+
[PROC-0][2024-10-08 17:58:50,990][energy_star][INFO] - + Iteration 1/10
|
31 |
+
[PROC-0][2024-10-08 17:58:55,027][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
32 |
+
[PROC-0][2024-10-08 17:58:55,027][energy_star][INFO] - + Iteration 2/10
|
33 |
+
[PROC-0][2024-10-08 17:58:59,120][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
34 |
+
[PROC-0][2024-10-08 17:58:59,120][energy_star][INFO] - + Iteration 3/10
|
35 |
+
[PROC-0][2024-10-08 17:59:03,140][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
36 |
+
[PROC-0][2024-10-08 17:59:03,141][energy_star][INFO] - + Iteration 4/10
|
37 |
+
[PROC-0][2024-10-08 17:59:07,128][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
38 |
+
[PROC-0][2024-10-08 17:59:07,129][energy_star][INFO] - + Iteration 5/10
|
39 |
+
[PROC-0][2024-10-08 17:59:11,194][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
40 |
+
[PROC-0][2024-10-08 17:59:11,194][energy_star][INFO] - + Iteration 6/10
|
41 |
+
[PROC-0][2024-10-08 17:59:15,225][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
42 |
+
[PROC-0][2024-10-08 17:59:15,226][energy_star][INFO] - + Iteration 7/10
|
43 |
+
[PROC-0][2024-10-08 17:59:19,190][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
44 |
+
[PROC-0][2024-10-08 17:59:19,191][energy_star][INFO] - + Iteration 8/10
|
45 |
+
[PROC-0][2024-10-08 17:59:23,272][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
46 |
+
[PROC-0][2024-10-08 17:59:23,273][energy_star][INFO] - + Iteration 9/10
|
47 |
+
[PROC-0][2024-10-08 17:59:27,362][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
48 |
+
[PROC-0][2024-10-08 17:59:27,362][energy_star][INFO] - + Iteration 10/10
|
49 |
+
[PROC-0][2024-10-08 17:59:31,460][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
50 |
+
[PROC-0][2024-10-08 17:59:31,461][energy][INFO] - + forward energy consumption:
|
51 |
+
[PROC-0][2024-10-08 17:59:31,461][energy][INFO] - + CPU: 0.000043 (kWh)
|
52 |
+
[PROC-0][2024-10-08 17:59:31,461][energy][INFO] - + GPU: 0.000170 (kWh)
|
53 |
+
[PROC-0][2024-10-08 17:59:31,461][energy][INFO] - + RAM: 0.000000 (kWh)
|
54 |
+
[PROC-0][2024-10-08 17:59:31,461][energy][INFO] - + total: 0.000214 (kWh)
|
55 |
+
[PROC-0][2024-10-08 17:59:31,461][energy][INFO] - + forward_iteration_1 energy consumption:
|
56 |
+
[PROC-0][2024-10-08 17:59:31,461][energy][INFO] - + CPU: 0.000048 (kWh)
|
57 |
+
[PROC-0][2024-10-08 17:59:31,462][energy][INFO] - + GPU: 0.000186 (kWh)
|
58 |
+
[PROC-0][2024-10-08 17:59:31,462][energy][INFO] - + RAM: 0.000000 (kWh)
|
59 |
+
[PROC-0][2024-10-08 17:59:31,462][energy][INFO] - + total: 0.000234 (kWh)
|
60 |
+
[PROC-0][2024-10-08 17:59:31,462][energy][INFO] - + forward_iteration_2 energy consumption:
|
61 |
+
[PROC-0][2024-10-08 17:59:31,462][energy][INFO] - + CPU: 0.000048 (kWh)
|
62 |
+
[PROC-0][2024-10-08 17:59:31,462][energy][INFO] - + GPU: 0.000182 (kWh)
|
63 |
+
[PROC-0][2024-10-08 17:59:31,462][energy][INFO] - + RAM: 0.000000 (kWh)
|
64 |
+
[PROC-0][2024-10-08 17:59:31,462][energy][INFO] - + total: 0.000231 (kWh)
|
65 |
+
[PROC-0][2024-10-08 17:59:31,462][energy][INFO] - + forward_iteration_3 energy consumption:
|
66 |
+
[PROC-0][2024-10-08 17:59:31,462][energy][INFO] - + CPU: 0.000047 (kWh)
|
67 |
+
[PROC-0][2024-10-08 17:59:31,462][energy][INFO] - + GPU: 0.000186 (kWh)
|
68 |
+
[PROC-0][2024-10-08 17:59:31,462][energy][INFO] - + RAM: 0.000000 (kWh)
|
69 |
+
[PROC-0][2024-10-08 17:59:31,462][energy][INFO] - + total: 0.000234 (kWh)
|
70 |
+
[PROC-0][2024-10-08 17:59:31,463][energy][INFO] - + forward_iteration_4 energy consumption:
|
71 |
+
[PROC-0][2024-10-08 17:59:31,463][energy][INFO] - + CPU: 0.000047 (kWh)
|
72 |
+
[PROC-0][2024-10-08 17:59:31,463][energy][INFO] - + GPU: 0.000187 (kWh)
|
73 |
+
[PROC-0][2024-10-08 17:59:31,463][energy][INFO] - + RAM: 0.000000 (kWh)
|
74 |
+
[PROC-0][2024-10-08 17:59:31,463][energy][INFO] - + total: 0.000235 (kWh)
|
75 |
+
[PROC-0][2024-10-08 17:59:31,463][energy][INFO] - + forward_iteration_5 energy consumption:
|
76 |
+
[PROC-0][2024-10-08 17:59:31,463][energy][INFO] - + CPU: 0.000048 (kWh)
|
77 |
+
[PROC-0][2024-10-08 17:59:31,463][energy][INFO] - + GPU: 0.000186 (kWh)
|
78 |
+
[PROC-0][2024-10-08 17:59:31,463][energy][INFO] - + RAM: 0.000000 (kWh)
|
79 |
+
[PROC-0][2024-10-08 17:59:31,463][energy][INFO] - + total: 0.000234 (kWh)
|
80 |
+
[PROC-0][2024-10-08 17:59:31,463][energy][INFO] - + forward_iteration_6 energy consumption:
|
81 |
+
[PROC-0][2024-10-08 17:59:31,463][energy][INFO] - + CPU: 0.000048 (kWh)
|
82 |
+
[PROC-0][2024-10-08 17:59:31,464][energy][INFO] - + GPU: 0.000192 (kWh)
|
83 |
+
[PROC-0][2024-10-08 17:59:31,464][energy][INFO] - + RAM: 0.000000 (kWh)
|
84 |
+
[PROC-0][2024-10-08 17:59:31,464][energy][INFO] - + total: 0.000240 (kWh)
|
85 |
+
[PROC-0][2024-10-08 17:59:31,464][energy][INFO] - + forward_iteration_7 energy consumption:
|
86 |
+
[PROC-0][2024-10-08 17:59:31,464][energy][INFO] - + CPU: 0.000000 (kWh)
|
87 |
+
[PROC-0][2024-10-08 17:59:31,464][energy][INFO] - + GPU: 0.000000 (kWh)
|
88 |
+
[PROC-0][2024-10-08 17:59:31,464][energy][INFO] - + RAM: 0.000000 (kWh)
|
89 |
+
[PROC-0][2024-10-08 17:59:31,464][energy][INFO] - + total: 0.000000 (kWh)
|
90 |
+
[PROC-0][2024-10-08 17:59:31,464][energy][INFO] - + forward_iteration_8 energy consumption:
|
91 |
+
[PROC-0][2024-10-08 17:59:31,464][energy][INFO] - + CPU: 0.000048 (kWh)
|
92 |
+
[PROC-0][2024-10-08 17:59:31,464][energy][INFO] - + GPU: 0.000195 (kWh)
|
93 |
+
[PROC-0][2024-10-08 17:59:31,465][energy][INFO] - + RAM: 0.000000 (kWh)
|
94 |
+
[PROC-0][2024-10-08 17:59:31,465][energy][INFO] - + total: 0.000243 (kWh)
|
95 |
+
[PROC-0][2024-10-08 17:59:31,465][energy][INFO] - + forward_iteration_9 energy consumption:
|
96 |
+
[PROC-0][2024-10-08 17:59:31,465][energy][INFO] - + CPU: 0.000048 (kWh)
|
97 |
+
[PROC-0][2024-10-08 17:59:31,465][energy][INFO] - + GPU: 0.000194 (kWh)
|
98 |
+
[PROC-0][2024-10-08 17:59:31,465][energy][INFO] - + RAM: 0.000000 (kWh)
|
99 |
+
[PROC-0][2024-10-08 17:59:31,465][energy][INFO] - + total: 0.000243 (kWh)
|
100 |
+
[PROC-0][2024-10-08 17:59:31,465][energy][INFO] - + forward_iteration_10 energy consumption:
|
101 |
+
[PROC-0][2024-10-08 17:59:31,465][energy][INFO] - + CPU: 0.000048 (kWh)
|
102 |
+
[PROC-0][2024-10-08 17:59:31,465][energy][INFO] - + GPU: 0.000194 (kWh)
|
103 |
+
[PROC-0][2024-10-08 17:59:31,465][energy][INFO] - + RAM: 0.000000 (kWh)
|
104 |
+
[PROC-0][2024-10-08 17:59:31,465][energy][INFO] - + total: 0.000243 (kWh)
|
105 |
+
[PROC-0][2024-10-08 17:59:31,466][energy][INFO] - + preprocess energy consumption:
|
106 |
+
[PROC-0][2024-10-08 17:59:31,466][energy][INFO] - + CPU: 0.000005 (kWh)
|
107 |
+
[PROC-0][2024-10-08 17:59:31,466][energy][INFO] - + GPU: 0.000008 (kWh)
|
108 |
+
[PROC-0][2024-10-08 17:59:31,466][energy][INFO] - + RAM: 0.000000 (kWh)
|
109 |
+
[PROC-0][2024-10-08 17:59:31,466][energy][INFO] - + total: 0.000013 (kWh)
|
110 |
+
[PROC-0][2024-10-08 17:59:31,466][energy][INFO] - + forward energy efficiency: 4680695.964939 (samples/kWh)
|
111 |
+
[PROC-0][2024-10-08 17:59:31,466][energy][INFO] - + preprocess energy efficiency: 78234816.797700 (samples/kWh)
|
112 |
+
[2024-10-08 17:59:32,083][device-isolation][INFO] - + Closing device(s) isolation process...
|
113 |
+
[2024-10-08 17:59:32,131][datasets][INFO] - PyTorch version 2.4.0 available.
|
runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/error.log
ADDED
@@ -0,0 +1,178 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
0 |
0%| | 0/1000 [00:00<?, ?it/s]
|
1 |
2%|▎ | 25/1000 [00:00<00:04, 240.63it/s]
|
2 |
5%|▌ | 50/1000 [00:00<00:03, 242.21it/s]
|
3 |
8%|▊ | 75/1000 [00:00<00:03, 241.60it/s]
|
4 |
10%|█ | 100/1000 [00:00<00:03, 239.65it/s]
|
5 |
13%|█▎ | 126/1000 [00:00<00:03, 244.54it/s]
|
6 |
15%|█▌ | 151/1000 [00:00<00:03, 244.19it/s]
|
7 |
18%|█▊ | 177/1000 [00:00<00:03, 248.17it/s]
|
8 |
20%|██ | 202/1000 [00:00<00:03, 247.28it/s]
|
9 |
23%|██▎ | 228/1000 [00:00<00:03, 249.07it/s]
|
10 |
25%|██▌ | 253/1000 [00:01<00:03, 243.85it/s]
|
11 |
28%|██▊ | 279/1000 [00:01<00:02, 246.19it/s]
|
12 |
30%|███ | 305/1000 [00:01<00:02, 248.57it/s]
|
13 |
33%|███▎ | 331/1000 [00:01<00:02, 250.38it/s]
|
14 |
36%|███▌ | 357/1000 [00:01<00:02, 253.21it/s]
|
15 |
38%|███▊ | 383/1000 [00:01<00:02, 254.22it/s]
|
16 |
41%|████ | 409/1000 [00:01<00:02, 246.79it/s]
|
17 |
43%|████▎ | 434/1000 [00:01<00:02, 245.42it/s]
|
18 |
46%|████▌ | 459/1000 [00:01<00:02, 244.76it/s]
|
19 |
48%|████▊ | 484/1000 [00:01<00:02, 245.48it/s]
|
20 |
51%|█████ | 509/1000 [00:02<00:02, 244.06it/s]
|
21 |
53%|█████▎ | 534/1000 [00:02<00:01, 245.06it/s]
|
22 |
56%|█████▌ | 559/1000 [00:02<00:01, 245.44it/s]
|
23 |
58%|█████▊ | 584/1000 [00:02<00:01, 244.39it/s]
|
24 |
61%|██████ | 610/1000 [00:02<00:01, 246.28it/s]
|
25 |
64%|██████▎ | 636/1000 [00:02<00:01, 247.77it/s]
|
26 |
66%|██████▌ | 662/1000 [00:02<00:01, 248.82it/s]
|
27 |
69%|██████▉ | 688/1000 [00:02<00:01, 250.64it/s]
|
28 |
71%|███████▏ | 714/1000 [00:02<00:01, 250.32it/s]
|
29 |
74%|███████▍ | 740/1000 [00:02<00:01, 249.40it/s]
|
30 |
76%|███████▋ | 765/1000 [00:03<00:00, 249.00it/s]
|
31 |
79%|███████▉ | 792/1000 [00:03<00:00, 252.36it/s]
|
32 |
82%|████████▏ | 818/1000 [00:03<00:00, 251.90it/s]
|
33 |
84%|████████▍ | 844/1000 [00:03<00:00, 250.11it/s]
|
34 |
87%|████████▋ | 870/1000 [00:03<00:00, 249.89it/s]
|
35 |
90%|████████▉ | 895/1000 [00:03<00:00, 249.36it/s]
|
36 |
92%|█████████▏| 921/1000 [00:03<00:00, 250.45it/s]
|
37 |
95%|█████████▍| 947/1000 [00:03<00:00, 249.48it/s]
|
38 |
97%|█████████▋| 974/1000 [00:03<00:00, 252.78it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
0%| | 0/1000 [00:00<?, ?it/s]
|
40 |
3%|▎ | 26/1000 [00:00<00:03, 255.00it/s]
|
41 |
5%|▌ | 52/1000 [00:00<00:03, 247.85it/s]
|
42 |
8%|▊ | 77/1000 [00:00<00:03, 242.45it/s]
|
43 |
10%|█ | 102/1000 [00:00<00:03, 239.04it/s]
|
44 |
13%|█▎ | 128/1000 [00:00<00:03, 245.42it/s]
|
45 |
15%|█▌ | 153/1000 [00:00<00:03, 244.22it/s]
|
46 |
18%|█▊ | 178/1000 [00:00<00:03, 244.57it/s]
|
47 |
20%|██ | 203/1000 [00:00<00:03, 242.57it/s]
|
48 |
23%|██▎ | 228/1000 [00:00<00:03, 243.97it/s]
|
49 |
25%|██▌ | 253/1000 [00:01<00:03, 241.08it/s]
|
50 |
28%|██▊ | 279/1000 [00:01<00:02, 244.59it/s]
|
51 |
30%|███ | 304/1000 [00:01<00:02, 245.66it/s]
|
52 |
33%|███▎ | 329/1000 [00:01<00:02, 246.27it/s]
|
53 |
36%|███▌ | 355/1000 [00:01<00:02, 247.95it/s]
|
54 |
38%|███▊ | 380/1000 [00:01<00:02, 248.05it/s]
|
55 |
40%|████ | 405/1000 [00:01<00:02, 245.52it/s]
|
56 |
43%|████▎ | 430/1000 [00:01<00:02, 244.76it/s]
|
57 |
46%|████▌ | 455/1000 [00:01<00:02, 243.21it/s]
|
58 |
48%|████▊ | 480/1000 [00:01<00:02, 244.59it/s]
|
59 |
50%|█████ | 505/1000 [00:02<00:02, 243.00it/s]
|
60 |
53%|█████▎ | 530/1000 [00:02<00:01, 242.71it/s]
|
61 |
56%|█████▌ | 555/1000 [00:02<00:01, 244.47it/s]
|
62 |
58%|█████▊ | 580/1000 [00:02<00:01, 242.66it/s]
|
63 |
60%|██████ | 605/1000 [00:02<00:01, 241.88it/s]
|
64 |
63%|██████▎ | 630/1000 [00:02<00:01, 242.88it/s]
|
65 |
66%|██████▌ | 655/1000 [00:02<00:01, 243.36it/s]
|
66 |
68%|██████▊ | 680/1000 [00:02<00:01, 244.89it/s]
|
67 |
71%|███████ | 706/1000 [00:02<00:01, 246.52it/s]
|
68 |
73%|███████▎ | 731/1000 [00:02<00:01, 242.84it/s]
|
69 |
76%|███████▌ | 756/1000 [00:03<00:01, 243.79it/s]
|
70 |
78%|███████▊ | 781/1000 [00:03<00:00, 244.63it/s]
|
71 |
81%|████████ | 806/1000 [00:03<00:00, 245.72it/s]
|
72 |
83%|████████▎ | 831/1000 [00:03<00:00, 245.94it/s]
|
73 |
86%|████████▌ | 856/1000 [00:03<00:00, 246.12it/s]
|
74 |
88%|████████▊ | 882/1000 [00:03<00:00, 248.12it/s]
|
75 |
91%|█████████ | 907/1000 [00:03<00:00, 247.10it/s]
|
76 |
93%|█████████▎| 932/1000 [00:03<00:00, 247.76it/s]
|
77 |
96%|█████████▌| 957/1000 [00:03<00:00, 245.82it/s]
|
78 |
98%|█████████▊| 982/1000 [00:04<00:00, 246.55it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
0%| | 0/1000 [00:00<?, ?it/s]
|
80 |
2%|▎ | 25/1000 [00:00<00:03, 248.59it/s]
|
81 |
5%|▌ | 50/1000 [00:00<00:03, 242.75it/s]
|
82 |
8%|▊ | 75/1000 [00:00<00:03, 240.17it/s]
|
83 |
10%|█ | 100/1000 [00:00<00:03, 238.07it/s]
|
84 |
12%|█▎ | 125/1000 [00:00<00:03, 241.41it/s]
|
85 |
15%|█▌ | 150/1000 [00:00<00:03, 240.86it/s]
|
86 |
18%|█▊ | 175/1000 [00:00<00:03, 243.65it/s]
|
87 |
20%|██ | 200/1000 [00:00<00:03, 242.44it/s]
|
88 |
22%|██▎ | 225/1000 [00:00<00:03, 243.96it/s]
|
89 |
25%|██▌ | 250/1000 [00:01<00:03, 241.19it/s]
|
90 |
28%|██▊ | 275/1000 [00:01<00:03, 241.34it/s]
|
91 |
30%|███ | 300/1000 [00:01<00:02, 243.07it/s]
|
92 |
32%|███▎ | 325/1000 [00:01<00:02, 244.25it/s]
|
93 |
35%|███▌ | 351/1000 [00:01<00:02, 246.55it/s]
|
94 |
38%|███▊ | 377/1000 [00:01<00:02, 249.40it/s]
|
95 |
40%|████ | 402/1000 [00:01<00:02, 248.80it/s]
|
96 |
43%|████▎ | 427/1000 [00:01<00:02, 248.71it/s]
|
97 |
45%|████▌ | 452/1000 [00:01<00:02, 248.41it/s]
|
98 |
48%|████▊ | 478/1000 [00:01<00:02, 249.81it/s]
|
99 |
50%|█████ | 504/1000 [00:02<00:01, 250.05it/s]
|
100 |
53%|█████▎ | 530/1000 [00:02<00:01, 250.63it/s]
|
101 |
56%|█████▌ | 556/1000 [00:02<00:01, 252.79it/s]
|
102 |
58%|█████▊ | 582/1000 [00:02<00:01, 250.75it/s]
|
103 |
61%|██████ | 608/1000 [00:02<00:01, 249.01it/s]
|
104 |
63%|██████▎ | 634/1000 [00:02<00:01, 249.79it/s]
|
105 |
66%|██████▌ | 660/1000 [00:02<00:01, 250.51it/s]
|
106 |
69%|██████▊ | 686/1000 [00:02<00:01, 252.51it/s]
|
107 |
71%|███████ | 712/1000 [00:02<00:01, 253.46it/s]
|
108 |
74%|███████▍ | 738/1000 [00:02<00:01, 250.87it/s]
|
109 |
76%|███████▋ | 764/1000 [00:03<00:00, 250.57it/s]
|
110 |
79%|███████▉ | 791/1000 [00:03<00:00, 253.83it/s]
|
111 |
82%|████████▏ | 817/1000 [00:03<00:00, 253.74it/s]
|
112 |
84%|████████▍ | 843/1000 [00:03<00:00, 253.41it/s]
|
113 |
87%|████████▋ | 869/1000 [00:03<00:00, 254.39it/s]
|
114 |
90%|████████▉ | 895/1000 [00:03<00:00, 255.16it/s]
|
115 |
92%|█████████▏| 921/1000 [00:03<00:00, 254.50it/s]
|
116 |
95%|█████████▍| 947/1000 [00:03<00:00, 252.66it/s]
|
117 |
97%|█████████▋| 974/1000 [00:03<00:00, 255.29it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
0%| | 0/1000 [00:00<?, ?it/s]
|
119 |
2%|▎ | 25/1000 [00:00<00:03, 246.90it/s]
|
120 |
5%|▌ | 50/1000 [00:00<00:03, 245.74it/s]
|
121 |
8%|▊ | 75/1000 [00:00<00:03, 244.96it/s]
|
122 |
10%|█ | 100/1000 [00:00<00:03, 243.08it/s]
|
123 |
13%|█▎ | 126/1000 [00:00<00:03, 246.28it/s]
|
124 |
15%|█▌ | 151/1000 [00:00<00:03, 246.65it/s]
|
125 |
18%|█▊ | 177/1000 [00:00<00:03, 250.86it/s]
|
126 |
20%|██ | 203/1000 [00:00<00:03, 250.36it/s]
|
127 |
23%|██▎ | 229/1000 [00:00<00:03, 252.19it/s]
|
128 |
26%|██▌ | 255/1000 [00:01<00:03, 248.21it/s]
|
129 |
28%|██▊ | 281/1000 [00:01<00:02, 249.01it/s]
|
130 |
31%|███ | 308/1000 [00:01<00:02, 252.88it/s]
|
131 |
33%|███▎ | 334/1000 [00:01<00:02, 254.56it/s]
|
132 |
36%|███▌ | 361/1000 [00:01<00:02, 256.61it/s]
|
133 |
39%|███▊ | 387/1000 [00:01<00:02, 253.45it/s]
|
134 |
41%|████▏ | 413/1000 [00:01<00:02, 249.71it/s]
|
135 |
44%|████▍ | 439/1000 [00:01<00:02, 250.08it/s]
|
136 |
46%|████▋ | 465/1000 [00:01<00:02, 249.59it/s]
|
137 |
49%|████▉ | 491/1000 [00:01<00:02, 249.81it/s]
|
138 |
52%|█████▏ | 517/1000 [00:02<00:01, 252.28it/s]
|
139 |
54%|█████▍ | 543/1000 [00:02<00:01, 252.07it/s]
|
140 |
57%|█████▋ | 569/1000 [00:02<00:01, 252.67it/s]
|
141 |
60%|█████▉ | 595/1000 [00:02<00:01, 250.18it/s]
|
142 |
62%|██████▏ | 621/1000 [00:02<00:01, 250.50it/s]
|
143 |
65%|██████▍ | 647/1000 [00:02<00:01, 248.47it/s]
|
144 |
67%|██████▋ | 673/1000 [00:02<00:01, 251.61it/s]
|
145 |
70%|██████▉ | 699/1000 [00:02<00:01, 253.08it/s]
|
146 |
72%|███████▎ | 725/1000 [00:02<00:01, 249.07it/s]
|
147 |
75%|███████▌ | 751/1000 [00:02<00:00, 250.27it/s]
|
148 |
78%|███████▊ | 777/1000 [00:03<00:00, 251.77it/s]
|
149 |
80%|████████ | 803/1000 [00:03<00:00, 253.11it/s]
|
150 |
83%|████████▎ | 829/1000 [00:03<00:00, 253.76it/s]
|
151 |
86%|████████▌ | 855/1000 [00:03<00:00, 254.31it/s]
|
152 |
88%|████████▊ | 882/1000 [00:03<00:00, 256.17it/s]
|
153 |
91%|█████████ | 908/1000 [00:03<00:00, 255.12it/s]
|
154 |
93%|█████████▎| 934/1000 [00:03<00:00, 254.47it/s]
|
155 |
96%|█████████▌| 960/1000 [00:03<00:00, 253.28it/s]
|
156 |
99%|█████████▊| 986/1000 [00:03<00:00, 253.63it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
0%| | 0/1000 [00:00<?, ?it/s]
|
158 |
3%|▎ | 26/1000 [00:00<00:03, 254.16it/s]
|
159 |
5%|▌ | 52/1000 [00:00<00:03, 250.23it/s]
|
160 |
8%|▊ | 78/1000 [00:00<00:03, 247.09it/s]
|
161 |
10%|█ | 103/1000 [00:00<00:03, 242.56it/s]
|
162 |
13%|█▎ | 129/1000 [00:00<00:03, 248.30it/s]
|
163 |
16%|█▌ | 155/1000 [00:00<00:03, 249.16it/s]
|
164 |
18%|█▊ | 181/1000 [00:00<00:03, 250.59it/s]
|
165 |
21%|██ | 207/1000 [00:00<00:03, 249.97it/s]
|
166 |
23%|██▎ | 233/1000 [00:00<00:03, 252.07it/s]
|
167 |
26%|██▌ | 259/1000 [00:01<00:03, 244.62it/s]
|
168 |
28%|██▊ | 285/1000 [00:01<00:02, 248.33it/s]
|
169 |
31%|███ | 312/1000 [00:01<00:02, 252.20it/s]
|
170 |
34%|███▍ | 338/1000 [00:01<00:02, 253.66it/s]
|
171 |
36%|███▋ | 364/1000 [00:01<00:02, 255.18it/s]
|
172 |
39%|███▉ | 390/1000 [00:01<00:02, 250.87it/s]
|
173 |
42%|████▏ | 416/1000 [00:01<00:02, 250.59it/s]
|
174 |
44%|████▍ | 442/1000 [00:01<00:02, 250.61it/s]
|
175 |
47%|████▋ | 468/1000 [00:01<00:02, 249.77it/s]
|
176 |
49%|████▉ | 493/1000 [00:01<00:02, 249.56it/s]
|
177 |
52%|█████▏ | 519/1000 [00:02<00:01, 251.81it/s]
|
178 |
55%|█████▍ | 545/1000 [00:02<00:01, 249.68it/s]
|
179 |
57%|█████▋ | 570/1000 [00:02<00:01, 246.79it/s]
|
180 |
60%|█████▉ | 595/1000 [00:02<00:01, 243.39it/s]
|
181 |
62%|██████▏ | 620/1000 [00:02<00:01, 241.46it/s]
|
182 |
64%|██████▍ | 645/1000 [00:02<00:01, 240.13it/s]
|
183 |
67%|██████▋ | 670/1000 [00:02<00:01, 240.92it/s]
|
184 |
70%|██████▉ | 695/1000 [00:02<00:01, 241.48it/s]
|
185 |
72%|███████▏ | 720/1000 [00:02<00:01, 238.33it/s]
|
186 |
74%|███████▍ | 745/1000 [00:03<00:01, 239.02it/s]
|
187 |
77%|███████▋ | 771/1000 [00:03<00:00, 243.23it/s]
|
188 |
80%|███████▉ | 797/1000 [00:03<00:00, 247.73it/s]
|
189 |
82%|████████▏ | 822/1000 [00:03<00:00, 247.17it/s]
|
190 |
85%|████████▍ | 847/1000 [00:03<00:00, 245.97it/s]
|
191 |
87%|████████▋ | 872/1000 [00:03<00:00, 245.82it/s]
|
192 |
90%|████████▉ | 897/1000 [00:03<00:00, 245.22it/s]
|
193 |
92%|█████████▏| 922/1000 [00:03<00:00, 244.06it/s]
|
194 |
95%|█████████▍| 947/1000 [00:03<00:00, 241.73it/s]
|
195 |
97%|█████████▋| 972/1000 [00:03<00:00, 242.81it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
0%| | 0/1000 [00:00<?, ?it/s]
|
197 |
3%|▎ | 26/1000 [00:00<00:03, 253.49it/s]
|
198 |
5%|▌ | 52/1000 [00:00<00:03, 246.05it/s]
|
199 |
8%|▊ | 77/1000 [00:00<00:03, 237.82it/s]
|
200 |
10%|█ | 101/1000 [00:00<00:03, 232.28it/s]
|
201 |
13%|█▎ | 127/1000 [00:00<00:03, 239.46it/s]
|
202 |
15%|█▌ | 151/1000 [00:00<00:03, 238.06it/s]
|
203 |
18%|█▊ | 175/1000 [00:00<00:03, 238.64it/s]
|
204 |
20%|██ | 200/1000 [00:00<00:03, 239.75it/s]
|
205 |
22%|██▏ | 224/1000 [00:00<00:03, 239.64it/s]
|
206 |
25%|██▍ | 249/1000 [00:01<00:03, 240.64it/s]
|
207 |
27%|██▋ | 274/1000 [00:01<00:03, 241.51it/s]
|
208 |
30%|███ | 300/1000 [00:01<00:02, 246.17it/s]
|
209 |
33%|███▎ | 326/1000 [00:01<00:02, 248.73it/s]
|
210 |
35%|███▌ | 352/1000 [00:01<00:02, 249.20it/s]
|
211 |
38%|███▊ | 377/1000 [00:01<00:02, 247.12it/s]
|
212 |
40%|████ | 402/1000 [00:01<00:02, 246.00it/s]
|
213 |
43%|████▎ | 427/1000 [00:01<00:02, 246.37it/s]
|
214 |
45%|████▌ | 453/1000 [00:01<00:02, 247.75it/s]
|
215 |
48%|████▊ | 479/1000 [00:01<00:02, 249.39it/s]
|
216 |
50%|█████ | 504/1000 [00:02<00:02, 247.76it/s]
|
217 |
53%|█████▎ | 530/1000 [00:02<00:01, 249.00it/s]
|
218 |
56%|█████▌ | 556/1000 [00:02<00:01, 251.85it/s]
|
219 |
58%|█████▊ | 582/1000 [00:02<00:01, 250.58it/s]
|
220 |
61%|██████ | 608/1000 [00:02<00:01, 250.17it/s]
|
221 |
63%|██████▎ | 634/1000 [00:02<00:01, 251.32it/s]
|
222 |
66%|██████▌ | 660/1000 [00:02<00:01, 251.83it/s]
|
223 |
69%|██████▊ | 686/1000 [00:02<00:01, 253.65it/s]
|
224 |
71%|███████ | 712/1000 [00:02<00:01, 254.57it/s]
|
225 |
74%|███████▍ | 738/1000 [00:02<00:01, 251.56it/s]
|
226 |
76%|███████▋ | 764/1000 [00:03<00:00, 249.43it/s]
|
227 |
79%|███████▉ | 791/1000 [00:03<00:00, 252.76it/s]
|
228 |
82%|████████▏ | 817/1000 [00:03<00:00, 253.28it/s]
|
229 |
84%|████████▍ | 843/1000 [00:03<00:00, 252.86it/s]
|
230 |
87%|████████▋ | 869/1000 [00:03<00:00, 252.81it/s]
|
231 |
90%|████████▉ | 895/1000 [00:03<00:00, 253.46it/s]
|
232 |
92%|█████████▏| 921/1000 [00:03<00:00, 253.70it/s]
|
233 |
95%|█████████▍| 947/1000 [00:03<00:00, 252.55it/s]
|
234 |
97%|█████████▋| 974/1000 [00:03<00:00, 255.73it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
235 |
0%| | 0/1000 [00:00<?, ?it/s]
|
236 |
3%|▎ | 26/1000 [00:00<00:03, 256.34it/s]
|
237 |
5%|▌ | 52/1000 [00:00<00:03, 252.36it/s]
|
238 |
8%|▊ | 78/1000 [00:00<00:03, 249.87it/s]
|
239 |
10%|█ | 103/1000 [00:00<00:03, 244.91it/s]
|
240 |
13%|█▎ | 130/1000 [00:00<00:03, 250.38it/s]
|
241 |
16%|█▌ | 156/1000 [00:00<00:03, 251.01it/s]
|
242 |
18%|█▊ | 182/1000 [00:00<00:03, 248.79it/s]
|
243 |
21%|██ | 208/1000 [00:00<00:03, 250.18it/s]
|
244 |
24%|██▎ | 235/1000 [00:00<00:03, 253.79it/s]
|
245 |
26%|██▌ | 261/1000 [00:01<00:02, 246.69it/s]
|
246 |
29%|██▊ | 287/1000 [00:01<00:02, 249.91it/s]
|
247 |
31%|███▏ | 313/1000 [00:01<00:02, 252.88it/s]
|
248 |
34%|███▍ | 339/1000 [00:01<00:02, 253.97it/s]
|
249 |
36%|███▋ | 365/1000 [00:01<00:02, 255.39it/s]
|
250 |
39%|███▉ | 391/1000 [00:01<00:02, 254.58it/s]
|
251 |
42%|████▏ | 417/1000 [00:01<00:02, 252.72it/s]
|
252 |
44%|████▍ | 443/1000 [00:01<00:02, 252.28it/s]
|
253 |
47%|████▋ | 469/1000 [00:01<00:02, 251.82it/s]
|
254 |
50%|████▉ | 495/1000 [00:01<00:02, 251.06it/s]
|
255 |
52%|█████▏ | 521/1000 [00:02<00:01, 251.71it/s]
|
256 |
55%|█████▍ | 547/1000 [00:02<00:01, 253.68it/s]
|
257 |
57%|█████▋ | 573/1000 [00:02<00:01, 253.35it/s]
|
258 |
60%|█████▉ | 599/1000 [00:02<00:01, 250.66it/s]
|
259 |
62%|██████▎ | 625/1000 [00:02<00:01, 252.90it/s]
|
260 |
65%|██████▌ | 651/1000 [00:02<00:01, 250.93it/s]
|
261 |
68%|██████▊ | 677/1000 [00:02<00:01, 252.71it/s]
|
262 |
70%|███████ | 704/1000 [00:02<00:01, 255.21it/s]
|
263 |
73%|███████▎ | 730/1000 [00:02<00:01, 250.65it/s]
|
264 |
76%|███████▌ | 756/1000 [00:03<00:00, 251.30it/s]
|
265 |
78%|███████▊ | 782/1000 [00:03<00:00, 252.96it/s]
|
266 |
81%|████████ | 808/1000 [00:03<00:00, 254.38it/s]
|
267 |
83%|████████▎ | 834/1000 [00:03<00:00, 254.74it/s]
|
268 |
86%|████████▌ | 860/1000 [00:03<00:00, 254.02it/s]
|
269 |
89%|████████▊ | 887/1000 [00:03<00:00, 256.18it/s]
|
270 |
91%|█████████▏| 913/1000 [00:03<00:00, 255.58it/s]
|
271 |
94%|█████████▍| 939/1000 [00:03<00:00, 254.93it/s]
|
272 |
96%|█████████▋| 965/1000 [00:03<00:00, 254.22it/s]
|
273 |
99%|█████████▉| 991/1000 [00:03<00:00, 255.31it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
0%| | 0/1000 [00:00<?, ?it/s]
|
275 |
3%|▎ | 26/1000 [00:00<00:03, 254.47it/s]
|
276 |
5%|▌ | 52/1000 [00:00<00:03, 250.55it/s]
|
277 |
8%|▊ | 78/1000 [00:00<00:03, 247.69it/s]
|
278 |
10%|█ | 103/1000 [00:00<00:03, 242.94it/s]
|
279 |
13%|█▎ | 129/1000 [00:00<00:03, 248.06it/s]
|
280 |
15%|█▌ | 154/1000 [00:00<00:03, 248.51it/s]
|
281 |
18%|█▊ | 180/1000 [00:00<00:03, 250.10it/s]
|
282 |
21%|██ | 206/1000 [00:00<00:03, 249.18it/s]
|
283 |
23%|██▎ | 232/1000 [00:00<00:03, 252.32it/s]
|
284 |
26%|██▌ | 258/1000 [00:01<00:03, 245.23it/s]
|
285 |
28%|██▊ | 283/1000 [00:01<00:02, 246.60it/s]
|
286 |
31%|███ | 310/1000 [00:01<00:02, 250.90it/s]
|
287 |
34%|███▎ | 336/1000 [00:01<00:02, 252.12it/s]
|
288 |
36%|███▋ | 363/1000 [00:01<00:02, 254.53it/s]
|
289 |
39%|███▉ | 389/1000 [00:01<00:02, 253.83it/s]
|
290 |
42%|████▏ | 415/1000 [00:01<00:02, 252.35it/s]
|
291 |
44%|████▍ | 441/1000 [00:01<00:02, 250.12it/s]
|
292 |
47%|████▋ | 467/1000 [00:01<00:02, 247.71it/s]
|
293 |
49%|████▉ | 492/1000 [00:01<00:02, 247.99it/s]
|
294 |
52%|█████▏ | 518/1000 [00:02<00:01, 250.60it/s]
|
295 |
54%|█████▍ | 544/1000 [00:02<00:01, 248.35it/s]
|
296 |
57%|█████▋ | 569/1000 [00:02<00:01, 246.44it/s]
|
297 |
59%|█████▉ | 594/1000 [00:02<00:01, 242.71it/s]
|
298 |
62%|██████▏ | 619/1000 [00:02<00:01, 243.15it/s]
|
299 |
64%|██████▍ | 644/1000 [00:02<00:01, 241.37it/s]
|
300 |
67%|██████▋ | 669/1000 [00:02<00:01, 241.38it/s]
|
301 |
69%|██████▉ | 694/1000 [00:02<00:01, 241.61it/s]
|
302 |
72%|███████▏ | 719/1000 [00:02<00:01, 237.80it/s]
|
303 |
74%|███████▍ | 743/1000 [00:03<00:01, 237.61it/s]
|
304 |
77%|███████▋ | 768/1000 [00:03<00:00, 238.71it/s]
|
305 |
79%|███████▉ | 793/1000 [00:03<00:00, 240.83it/s]
|
306 |
82%|████████▏ | 818/1000 [00:03<00:00, 240.87it/s]
|
307 |
84%|████████▍ | 843/1000 [00:03<00:00, 241.71it/s]
|
308 |
87%|████████▋ | 868/1000 [00:03<00:00, 242.39it/s]
|
309 |
89%|████████▉ | 893/1000 [00:03<00:00, 242.86it/s]
|
310 |
92%|█████████▏| 918/1000 [00:03<00:00, 241.75it/s]
|
311 |
94%|█████████▍| 943/1000 [00:03<00:00, 241.38it/s]
|
312 |
97%|█████████▋| 968/1000 [00:03<00:00, 242.27it/s]
|
313 |
99%|█████████▉| 993/1000 [00:04<00:00, 242.55it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
314 |
0%| | 0/1000 [00:00<?, ?it/s]
|
315 |
2%|▎ | 25/1000 [00:00<00:04, 242.52it/s]
|
316 |
5%|▌ | 50/1000 [00:00<00:03, 240.55it/s]
|
317 |
8%|▊ | 75/1000 [00:00<00:03, 242.22it/s]
|
318 |
10%|█ | 100/1000 [00:00<00:03, 241.19it/s]
|
319 |
12%|█▎ | 125/1000 [00:00<00:03, 242.73it/s]
|
320 |
15%|█▌ | 150/1000 [00:00<00:03, 240.73it/s]
|
321 |
18%|█▊ | 175/1000 [00:00<00:03, 242.70it/s]
|
322 |
20%|██ | 200/1000 [00:00<00:03, 240.13it/s]
|
323 |
22%|██▎ | 225/1000 [00:00<00:03, 240.01it/s]
|
324 |
25%|██▌ | 250/1000 [00:01<00:03, 237.23it/s]
|
325 |
27%|██▋ | 274/1000 [00:01<00:03, 237.24it/s]
|
326 |
30%|██▉ | 299/1000 [00:01<00:02, 239.74it/s]
|
327 |
32%|███▏ | 324/1000 [00:01<00:02, 241.47it/s]
|
328 |
35%|███▍ | 349/1000 [00:01<00:02, 243.73it/s]
|
329 |
38%|███▊ | 375/1000 [00:01<00:02, 245.75it/s]
|
330 |
40%|████ | 400/1000 [00:01<00:02, 244.57it/s]
|
331 |
42%|████▎ | 425/1000 [00:01<00:02, 245.05it/s]
|
332 |
45%|████▌ | 450/1000 [00:01<00:02, 244.24it/s]
|
333 |
48%|████▊ | 475/1000 [00:01<00:02, 244.49it/s]
|
334 |
50%|█████ | 500/1000 [00:02<00:02, 242.59it/s]
|
335 |
52%|█████▎ | 525/1000 [00:02<00:01, 243.59it/s]
|
336 |
55%|█████▌ | 551/1000 [00:02<00:01, 247.24it/s]
|
337 |
58%|█████▊ | 576/1000 [00:02<00:01, 245.81it/s]
|
338 |
60%|██████ | 601/1000 [00:02<00:01, 243.16it/s]
|
339 |
63%|██████▎ | 626/1000 [00:02<00:01, 244.05it/s]
|
340 |
65%|██████▌ | 651/1000 [00:02<00:01, 243.89it/s]
|
341 |
68%|██████▊ | 677/1000 [00:02<00:01, 245.16it/s]
|
342 |
70%|███████ | 703/1000 [00:02<00:01, 247.32it/s]
|
343 |
73%|███████▎ | 728/1000 [00:02<00:01, 243.13it/s]
|
344 |
75%|███████▌ | 753/1000 [00:03<00:01, 243.64it/s]
|
345 |
78%|███████▊ | 778/1000 [00:03<00:00, 245.10it/s]
|
346 |
80%|████████ | 803/1000 [00:03<00:00, 246.28it/s]
|
347 |
83%|████████▎ | 828/1000 [00:03<00:00, 246.06it/s]
|
348 |
85%|████████▌ | 854/1000 [00:03<00:00, 246.18it/s]
|
349 |
88%|████████▊ | 880/1000 [00:03<00:00, 248.47it/s]
|
350 |
91%|█████████ | 906/1000 [00:03<00:00, 249.94it/s]
|
351 |
93%|█████████▎| 933/1000 [00:03<00:00, 253.03it/s]
|
352 |
96%|█████████▌| 959/1000 [00:03<00:00, 252.77it/s]
|
353 |
99%|█████████▊| 986/1000 [00:04<00:00, 255.04it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
354 |
0%| | 0/1000 [00:00<?, ?it/s]
|
355 |
2%|▎ | 25/1000 [00:00<00:03, 247.35it/s]
|
356 |
5%|▌ | 50/1000 [00:00<00:03, 244.09it/s]
|
357 |
8%|▊ | 75/1000 [00:00<00:03, 241.31it/s]
|
358 |
10%|█ | 100/1000 [00:00<00:03, 238.75it/s]
|
359 |
12%|█▎ | 125/1000 [00:00<00:03, 241.82it/s]
|
360 |
15%|█▌ | 150/1000 [00:00<00:03, 241.12it/s]
|
361 |
18%|█▊ | 175/1000 [00:00<00:03, 243.35it/s]
|
362 |
20%|██ | 200/1000 [00:00<00:03, 241.74it/s]
|
363 |
22%|██▎ | 225/1000 [00:00<00:03, 243.70it/s]
|
364 |
25%|██▌ | 250/1000 [00:01<00:03, 240.77it/s]
|
365 |
28%|██▊ | 275/1000 [00:01<00:03, 241.11it/s]
|
366 |
30%|███ | 300/1000 [00:01<00:02, 243.57it/s]
|
367 |
32%|███▎ | 325/1000 [00:01<00:02, 244.69it/s]
|
368 |
35%|███▌ | 351/1000 [00:01<00:02, 246.97it/s]
|
369 |
38%|███▊ | 377/1000 [00:01<00:02, 248.62it/s]
|
370 |
40%|████ | 402/1000 [00:01<00:02, 248.07it/s]
|
371 |
43%|████▎ | 427/1000 [00:01<00:02, 248.14it/s]
|
372 |
45%|████▌ | 453/1000 [00:01<00:02, 250.00it/s]
|
373 |
48%|████▊ | 479/1000 [00:01<00:02, 251.53it/s]
|
374 |
50%|█████ | 505/1000 [00:02<00:02, 247.43it/s]
|
375 |
53%|█████▎ | 530/1000 [00:02<00:01, 245.40it/s]
|
376 |
56%|█████▌ | 555/1000 [00:02<00:01, 245.89it/s]
|
377 |
58%|█████▊ | 580/1000 [00:02<00:01, 243.36it/s]
|
378 |
60%|██████ | 605/1000 [00:02<00:01, 242.16it/s]
|
379 |
63%|██████▎ | 630/1000 [00:02<00:01, 242.58it/s]
|
380 |
66%|██████▌ | 655/1000 [00:02<00:01, 241.85it/s]
|
381 |
68%|██████▊ | 680/1000 [00:02<00:01, 242.80it/s]
|
382 |
71%|███████ | 706/1000 [00:02<00:01, 245.48it/s]
|
383 |
73%|███████▎ | 731/1000 [00:02<00:01, 241.41it/s]
|
384 |
76%|███████▌ | 756/1000 [00:03<00:01, 241.53it/s]
|
385 |
78%|███████▊ | 781/1000 [00:03<00:00, 243.42it/s]
|
386 |
81%|████████ | 806/1000 [00:03<00:00, 244.30it/s]
|
387 |
83%|████████▎ | 831/1000 [00:03<00:00, 244.40it/s]
|
388 |
86%|████████▌ | 856/1000 [00:03<00:00, 244.32it/s]
|
389 |
88%|████████▊ | 881/1000 [00:03<00:00, 245.71it/s]
|
390 |
91%|█████████ | 906/1000 [00:03<00:00, 244.25it/s]
|
391 |
93%|█████████▎| 931/1000 [00:03<00:00, 244.83it/s]
|
392 |
96%|█████████▌| 956/1000 [00:03<00:00, 244.19it/s]
|
393 |
98%|█████████▊| 982/1000 [00:04<00:00, 247.25it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/opt/conda/lib/python3.9/site-packages/transformers/tokenization_utils_base.py:1601: FutureWarning: `clean_up_tokenization_spaces` was not set. It will be set to `True` by default. This behavior will be depracted in transformers v4.45, and will be then set to `False` by default. For more details check this issue: https://github.com/huggingface/transformers/issues/31884
|
2 |
+
warnings.warn(
|
3 |
+
|
4 |
+
|
5 |
+
|
6 |
+
|
7 |
+
|
8 |
+
|
9 |
+
|
10 |
+
[codecarbon INFO @ 17:58:45] [setup] RAM Tracking...
|
11 |
+
[codecarbon INFO @ 17:58:45] [setup] GPU Tracking...
|
12 |
+
[codecarbon INFO @ 17:58:45] Tracking Nvidia GPU via pynvml
|
13 |
+
[codecarbon DEBUG @ 17:58:45] GPU available. Starting setup
|
14 |
+
[codecarbon INFO @ 17:58:45] [setup] CPU Tracking...
|
15 |
+
[codecarbon DEBUG @ 17:58:45] Not using PowerGadget, an exception occurred while instantiating IntelPowerGadget : Platform not supported by Intel Power Gadget
|
16 |
+
[codecarbon DEBUG @ 17:58:45] Not using the RAPL interface, an exception occurred while instantiating IntelRAPL : Intel RAPL files not found at /sys/class/powercap/intel-rapl on linux
|
17 |
+
[codecarbon DEBUG @ 17:58:45] Not using PowerMetrics, an exception occurred while instantiating Powermetrics : Platform not supported by Powermetrics
|
18 |
+
[codecarbon WARNING @ 17:58:45] No CPU tracking mode found. Falling back on CPU constant mode.
|
19 |
+
[codecarbon WARNING @ 17:58:47] We saw that you have a AMD EPYC 7R32 but we don't know it. Please contact us.
|
20 |
+
[codecarbon INFO @ 17:58:47] CPU Model on constant consumption mode: AMD EPYC 7R32
|
21 |
+
[codecarbon INFO @ 17:58:47] >>> Tracker's metadata:
|
22 |
+
[codecarbon INFO @ 17:58:47] Platform system: Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35
|
23 |
+
[codecarbon INFO @ 17:58:47] Python version: 3.9.20
|
24 |
+
[codecarbon INFO @ 17:58:47] CodeCarbon version: 2.5.1
|
25 |
+
[codecarbon INFO @ 17:58:47] Available RAM : 186.705 GB
|
26 |
+
[codecarbon INFO @ 17:58:47] CPU count: 48
|
27 |
+
[codecarbon INFO @ 17:58:47] CPU model: AMD EPYC 7R32
|
28 |
+
[codecarbon INFO @ 17:58:47] GPU count: 1
|
29 |
+
[codecarbon INFO @ 17:58:47] GPU model: 1 x NVIDIA A10G
|
30 |
+
[codecarbon DEBUG @ 17:58:48] Not running on AWS
|
31 |
+
[codecarbon DEBUG @ 17:58:49] Not running on Azure
|
32 |
+
[codecarbon DEBUG @ 17:58:50] Not running on GCP
|
33 |
+
[codecarbon INFO @ 17:58:50] Saving emissions data to file /runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/codecarbon.csv
|
34 |
+
[codecarbon DEBUG @ 17:58:50] EmissionsData(timestamp='2024-10-08T17:58:50', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=0.002169088984373957, emissions=0.0, emissions_rate=0.0, cpu_power=0.0, gpu_power=0.0, ram_power=0.0, cpu_energy=0, gpu_energy=0, ram_energy=0, energy_consumed=0, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
35 |
+
|
36 |
+
|
37 |
+
[codecarbon INFO @ 17:58:50] Energy consumed for RAM : 0.000000 kWh. RAM Power : 0.272127628326416 W
|
38 |
+
[codecarbon DEBUG @ 17:58:50] RAM : 0.27 W during 0.42 s [measurement time: 0.0006]
|
39 |
+
[codecarbon INFO @ 17:58:50] Energy consumed for all GPUs : 0.000008 kWh. Total GPU Power : 65.29715667853465 W
|
40 |
+
[codecarbon DEBUG @ 17:58:50] GPU : 65.30 W during 0.42 s [measurement time: 0.0022]
|
41 |
+
[codecarbon INFO @ 17:58:50] Energy consumed for all CPUs : 0.000005 kWh. Total CPU Power : 42.5 W
|
42 |
+
[codecarbon DEBUG @ 17:58:50] CPU : 42.50 W during 0.43 s [measurement time: 0.0000]
|
43 |
+
[codecarbon INFO @ 17:58:50] 0.000013 kWh of electricity used since the beginning.
|
44 |
+
[codecarbon DEBUG @ 17:58:50] last_duration=0.42401501996209845
|
45 |
+
------------------------
|
46 |
+
[codecarbon DEBUG @ 17:58:50] EmissionsData(timestamp='2024-10-08T17:58:50', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=0.42724016797728837, emissions=4.718287752181354e-06, emissions_rate=1.104364267648208e-05, cpu_power=42.5, gpu_power=65.29715667853465, ram_power=0.272127628326416, cpu_energy=5.042474785700001e-06, gpu_energy=7.707506165743894e-06, ram_energy=3.2051920005208315e-08, energy_consumed=1.2782032871449104e-05, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
47 |
+
[codecarbon DEBUG @ 17:58:50] EmissionsData(timestamp='2024-10-08T17:58:50', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=0.0023658329737372696, emissions=4.718287752181354e-06, emissions_rate=0.0019943452494568742, cpu_power=42.5, gpu_power=65.29715667853465, ram_power=0.272127628326416, cpu_energy=5.042474785700001e-06, gpu_energy=7.707506165743894e-06, ram_energy=3.2051920005208315e-08, energy_consumed=1.2782032871449104e-05, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
48 |
+
|
49 |
0%| | 0/1000 [00:00<?, ?it/s]
|
50 |
2%|▎ | 25/1000 [00:00<00:04, 240.63it/s]
|
51 |
5%|▌ | 50/1000 [00:00<00:03, 242.21it/s]
|
52 |
8%|▊ | 75/1000 [00:00<00:03, 241.60it/s]
|
53 |
10%|█ | 100/1000 [00:00<00:03, 239.65it/s]
|
54 |
13%|█▎ | 126/1000 [00:00<00:03, 244.54it/s]
|
55 |
15%|█▌ | 151/1000 [00:00<00:03, 244.19it/s]
|
56 |
18%|█▊ | 177/1000 [00:00<00:03, 248.17it/s]
|
57 |
20%|██ | 202/1000 [00:00<00:03, 247.28it/s]
|
58 |
23%|██▎ | 228/1000 [00:00<00:03, 249.07it/s]
|
59 |
25%|██▌ | 253/1000 [00:01<00:03, 243.85it/s]
|
60 |
28%|██▊ | 279/1000 [00:01<00:02, 246.19it/s]
|
61 |
30%|███ | 305/1000 [00:01<00:02, 248.57it/s]
|
62 |
33%|███▎ | 331/1000 [00:01<00:02, 250.38it/s]
|
63 |
36%|███▌ | 357/1000 [00:01<00:02, 253.21it/s]
|
64 |
38%|███▊ | 383/1000 [00:01<00:02, 254.22it/s]
|
65 |
41%|████ | 409/1000 [00:01<00:02, 246.79it/s]
|
66 |
43%|████▎ | 434/1000 [00:01<00:02, 245.42it/s]
|
67 |
46%|████▌ | 459/1000 [00:01<00:02, 244.76it/s]
|
68 |
48%|████▊ | 484/1000 [00:01<00:02, 245.48it/s]
|
69 |
51%|█████ | 509/1000 [00:02<00:02, 244.06it/s]
|
70 |
53%|█████▎ | 534/1000 [00:02<00:01, 245.06it/s]
|
71 |
56%|█████▌ | 559/1000 [00:02<00:01, 245.44it/s]
|
72 |
58%|█████▊ | 584/1000 [00:02<00:01, 244.39it/s]
|
73 |
61%|██████ | 610/1000 [00:02<00:01, 246.28it/s]
|
74 |
64%|██████▎ | 636/1000 [00:02<00:01, 247.77it/s]
|
75 |
66%|██████▌ | 662/1000 [00:02<00:01, 248.82it/s]
|
76 |
69%|██████▉ | 688/1000 [00:02<00:01, 250.64it/s]
|
77 |
71%|███████▏ | 714/1000 [00:02<00:01, 250.32it/s]
|
78 |
74%|███████▍ | 740/1000 [00:02<00:01, 249.40it/s]
|
79 |
76%|███████▋ | 765/1000 [00:03<00:00, 249.00it/s]
|
80 |
79%|███████▉ | 792/1000 [00:03<00:00, 252.36it/s]
|
81 |
82%|████████▏ | 818/1000 [00:03<00:00, 251.90it/s]
|
82 |
84%|████████▍ | 844/1000 [00:03<00:00, 250.11it/s]
|
83 |
87%|████████▋ | 870/1000 [00:03<00:00, 249.89it/s]
|
84 |
90%|████████▉ | 895/1000 [00:03<00:00, 249.36it/s]
|
85 |
92%|█████████▏| 921/1000 [00:03<00:00, 250.45it/s]
|
86 |
95%|█████████▍| 947/1000 [00:03<00:00, 249.48it/s]
|
87 |
97%|█████████▋| 974/1000 [00:03<00:00, 252.78it/s]
|
88 |
+
[codecarbon WARNING @ 17:58:55] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
89 |
+
[codecarbon INFO @ 17:58:55] Energy consumed for RAM : 0.000000 kWh. RAM Power : 0.34240293502807617 W
|
90 |
+
[codecarbon DEBUG @ 17:58:55] RAM : 0.34 W during 4.03 s [measurement time: 0.0004]
|
91 |
+
[codecarbon INFO @ 17:58:55] Energy consumed for all GPUs : 0.000193 kWh. Total GPU Power : 165.7590330845709 W
|
92 |
+
[codecarbon DEBUG @ 17:58:55] GPU : 165.76 W during 4.03 s [measurement time: 0.0023]
|
93 |
+
[codecarbon INFO @ 17:58:55] Energy consumed for all CPUs : 0.000053 kWh. Total CPU Power : 42.5 W
|
94 |
+
[codecarbon DEBUG @ 17:58:55] CPU : 42.50 W during 4.04 s [measurement time: 0.0000]
|
95 |
+
[codecarbon INFO @ 17:58:55] 0.000247 kWh of electricity used since the beginning.
|
96 |
+
[codecarbon DEBUG @ 17:58:55] last_duration=4.032387532002758
|
97 |
+
------------------------
|
98 |
+
[codecarbon DEBUG @ 17:58:55] EmissionsData(timestamp='2024-10-08T17:58:55', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=4.035693251993507, emissions=9.099821578505355e-05, emissions_rate=2.25483479796447e-05, cpu_power=42.5, gpu_power=165.7590330845709, ram_power=0.34240293502807617, cpu_energy=5.268488163932894e-05, gpu_energy=0.0001934173769555514, ram_energy=4.155984116217569e-07, energy_consumed=0.0002465178570065021, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
99 |
+
[codecarbon DEBUG @ 17:58:55] EmissionsData(timestamp='2024-10-08T17:58:55', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=0.005220913968514651, emissions=9.099821578505355e-05, emissions_rate=0.017429556651159014, cpu_power=42.5, gpu_power=165.7590330845709, ram_power=0.34240293502807617, cpu_energy=5.268488163932894e-05, gpu_energy=0.0001934173769555514, ram_energy=4.155984116217569e-07, energy_consumed=0.0002465178570065021, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
100 |
+
|
101 |
0%| | 0/1000 [00:00<?, ?it/s]
|
102 |
3%|▎ | 26/1000 [00:00<00:03, 255.00it/s]
|
103 |
5%|▌ | 52/1000 [00:00<00:03, 247.85it/s]
|
104 |
8%|▊ | 77/1000 [00:00<00:03, 242.45it/s]
|
105 |
10%|█ | 102/1000 [00:00<00:03, 239.04it/s]
|
106 |
13%|█▎ | 128/1000 [00:00<00:03, 245.42it/s]
|
107 |
15%|█▌ | 153/1000 [00:00<00:03, 244.22it/s]
|
108 |
18%|█▊ | 178/1000 [00:00<00:03, 244.57it/s]
|
109 |
20%|██ | 203/1000 [00:00<00:03, 242.57it/s]
|
110 |
23%|██▎ | 228/1000 [00:00<00:03, 243.97it/s]
|
111 |
25%|██▌ | 253/1000 [00:01<00:03, 241.08it/s]
|
112 |
28%|██▊ | 279/1000 [00:01<00:02, 244.59it/s]
|
113 |
30%|███ | 304/1000 [00:01<00:02, 245.66it/s]
|
114 |
33%|███▎ | 329/1000 [00:01<00:02, 246.27it/s]
|
115 |
36%|███▌ | 355/1000 [00:01<00:02, 247.95it/s]
|
116 |
38%|███▊ | 380/1000 [00:01<00:02, 248.05it/s]
|
117 |
40%|████ | 405/1000 [00:01<00:02, 245.52it/s]
|
118 |
43%|████▎ | 430/1000 [00:01<00:02, 244.76it/s]
|
119 |
46%|████▌ | 455/1000 [00:01<00:02, 243.21it/s]
|
120 |
48%|████▊ | 480/1000 [00:01<00:02, 244.59it/s]
|
121 |
50%|█████ | 505/1000 [00:02<00:02, 243.00it/s]
|
122 |
53%|█████▎ | 530/1000 [00:02<00:01, 242.71it/s]
|
123 |
56%|█████▌ | 555/1000 [00:02<00:01, 244.47it/s]
|
124 |
58%|█████▊ | 580/1000 [00:02<00:01, 242.66it/s]
|
125 |
60%|██████ | 605/1000 [00:02<00:01, 241.88it/s]
|
126 |
63%|██████▎ | 630/1000 [00:02<00:01, 242.88it/s]
|
127 |
66%|██████▌ | 655/1000 [00:02<00:01, 243.36it/s]
|
128 |
68%|██████▊ | 680/1000 [00:02<00:01, 244.89it/s]
|
129 |
71%|███████ | 706/1000 [00:02<00:01, 246.52it/s]
|
130 |
73%|███████▎ | 731/1000 [00:02<00:01, 242.84it/s]
|
131 |
76%|███████▌ | 756/1000 [00:03<00:01, 243.79it/s]
|
132 |
78%|███████▊ | 781/1000 [00:03<00:00, 244.63it/s]
|
133 |
81%|████████ | 806/1000 [00:03<00:00, 245.72it/s]
|
134 |
83%|████████▎ | 831/1000 [00:03<00:00, 245.94it/s]
|
135 |
86%|████████▌ | 856/1000 [00:03<00:00, 246.12it/s]
|
136 |
88%|████████▊ | 882/1000 [00:03<00:00, 248.12it/s]
|
137 |
91%|█████████ | 907/1000 [00:03<00:00, 247.10it/s]
|
138 |
93%|█████████▎| 932/1000 [00:03<00:00, 247.76it/s]
|
139 |
96%|█████████▌| 957/1000 [00:03<00:00, 245.82it/s]
|
140 |
98%|█████████▊| 982/1000 [00:04<00:00, 246.55it/s]
|
141 |
+
[codecarbon WARNING @ 17:58:59] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
142 |
+
[codecarbon INFO @ 17:58:59] Energy consumed for RAM : 0.000001 kWh. RAM Power : 0.34244871139526367 W
|
143 |
+
[codecarbon DEBUG @ 17:58:59] RAM : 0.34 W during 4.09 s [measurement time: 0.0004]
|
144 |
+
[codecarbon INFO @ 17:58:59] Energy consumed for all GPUs : 0.000375 kWh. Total GPU Power : 160.0671488692886 W
|
145 |
+
[codecarbon DEBUG @ 17:58:59] GPU : 160.07 W during 4.09 s [measurement time: 0.0023]
|
146 |
+
[codecarbon INFO @ 17:58:59] Energy consumed for all CPUs : 0.000101 kWh. Total CPU Power : 42.5 W
|
147 |
+
[codecarbon DEBUG @ 17:58:59] CPU : 42.50 W during 4.09 s [measurement time: 0.0000]
|
148 |
+
[codecarbon INFO @ 17:58:59] 0.000477 kWh of electricity used since the beginning.
|
149 |
+
[codecarbon DEBUG @ 17:58:59] last_duration=4.0889792739762925
|
150 |
+
------------------------
|
151 |
+
[codecarbon DEBUG @ 17:58:59] EmissionsData(timestamp='2024-10-08T17:58:59', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=4.092179451952688, emissions=0.00017609876927372013, emissions_rate=4.303300266797686e-05, cpu_power=42.5, gpu_power=160.0671488692886, ram_power=0.34244871139526367, cpu_energy=0.00010099411620867615, gpu_energy=0.00037526002242982415, ram_energy=8.04569033109679e-07, energy_consumed=0.00047705870767160994, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
152 |
+
[codecarbon DEBUG @ 17:58:59] EmissionsData(timestamp='2024-10-08T17:58:59', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=0.0021006889874115586, emissions=0.00017609876927372013, emissions_rate=0.08382905338629243, cpu_power=42.5, gpu_power=160.0671488692886, ram_power=0.34244871139526367, cpu_energy=0.00010099411620867615, gpu_energy=0.00037526002242982415, ram_energy=8.04569033109679e-07, energy_consumed=0.00047705870767160994, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
153 |
+
|
154 |
0%| | 0/1000 [00:00<?, ?it/s]
|
155 |
2%|▎ | 25/1000 [00:00<00:03, 248.59it/s]
|
156 |
5%|▌ | 50/1000 [00:00<00:03, 242.75it/s]
|
157 |
8%|▊ | 75/1000 [00:00<00:03, 240.17it/s]
|
158 |
10%|█ | 100/1000 [00:00<00:03, 238.07it/s]
|
159 |
12%|█▎ | 125/1000 [00:00<00:03, 241.41it/s]
|
160 |
15%|█▌ | 150/1000 [00:00<00:03, 240.86it/s]
|
161 |
18%|█▊ | 175/1000 [00:00<00:03, 243.65it/s]
|
162 |
20%|██ | 200/1000 [00:00<00:03, 242.44it/s]
|
163 |
22%|██▎ | 225/1000 [00:00<00:03, 243.96it/s]
|
164 |
25%|██▌ | 250/1000 [00:01<00:03, 241.19it/s]
|
165 |
28%|██▊ | 275/1000 [00:01<00:03, 241.34it/s]
|
166 |
30%|███ | 300/1000 [00:01<00:02, 243.07it/s]
|
167 |
32%|███▎ | 325/1000 [00:01<00:02, 244.25it/s]
|
168 |
35%|███▌ | 351/1000 [00:01<00:02, 246.55it/s]
|
169 |
38%|███▊ | 377/1000 [00:01<00:02, 249.40it/s]
|
170 |
40%|████ | 402/1000 [00:01<00:02, 248.80it/s]
|
171 |
43%|████▎ | 427/1000 [00:01<00:02, 248.71it/s]
|
172 |
45%|████▌ | 452/1000 [00:01<00:02, 248.41it/s]
|
173 |
48%|████▊ | 478/1000 [00:01<00:02, 249.81it/s]
|
174 |
50%|█████ | 504/1000 [00:02<00:01, 250.05it/s]
|
175 |
53%|█████▎ | 530/1000 [00:02<00:01, 250.63it/s]
|
176 |
56%|█████▌ | 556/1000 [00:02<00:01, 252.79it/s]
|
177 |
58%|█████▊ | 582/1000 [00:02<00:01, 250.75it/s]
|
178 |
61%|██████ | 608/1000 [00:02<00:01, 249.01it/s]
|
179 |
63%|██████▎ | 634/1000 [00:02<00:01, 249.79it/s]
|
180 |
66%|██████▌ | 660/1000 [00:02<00:01, 250.51it/s]
|
181 |
69%|██████▊ | 686/1000 [00:02<00:01, 252.51it/s]
|
182 |
71%|███████ | 712/1000 [00:02<00:01, 253.46it/s]
|
183 |
74%|███████▍ | 738/1000 [00:02<00:01, 250.87it/s]
|
184 |
76%|███████▋ | 764/1000 [00:03<00:00, 250.57it/s]
|
185 |
79%|███████▉ | 791/1000 [00:03<00:00, 253.83it/s]
|
186 |
82%|████████▏ | 817/1000 [00:03<00:00, 253.74it/s]
|
187 |
84%|████████▍ | 843/1000 [00:03<00:00, 253.41it/s]
|
188 |
87%|████████▋ | 869/1000 [00:03<00:00, 254.39it/s]
|
189 |
90%|████████▉ | 895/1000 [00:03<00:00, 255.16it/s]
|
190 |
92%|█████████▏| 921/1000 [00:03<00:00, 254.50it/s]
|
191 |
95%|█████████▍| 947/1000 [00:03<00:00, 252.66it/s]
|
192 |
97%|█████████▋| 974/1000 [00:03<00:00, 255.29it/s]
|
193 |
+
[codecarbon WARNING @ 17:59:03] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
194 |
+
[codecarbon INFO @ 17:59:03] Energy consumed for RAM : 0.000001 kWh. RAM Power : 0.3424544334411621 W
|
195 |
+
[codecarbon DEBUG @ 17:59:03] RAM : 0.34 W during 4.02 s [measurement time: 0.0004]
|
196 |
+
[codecarbon INFO @ 17:59:03] Energy consumed for all GPUs : 0.000562 kWh. Total GPU Power : 167.05200478675823 W
|
197 |
+
[codecarbon DEBUG @ 17:59:03] GPU : 167.05 W during 4.02 s [measurement time: 0.0023]
|
198 |
+
[codecarbon INFO @ 17:59:03] Energy consumed for all CPUs : 0.000148 kWh. Total CPU Power : 42.5 W
|
199 |
+
[codecarbon DEBUG @ 17:59:03] CPU : 42.50 W during 4.02 s [measurement time: 0.0000]
|
200 |
+
[codecarbon INFO @ 17:59:03] 0.000711 kWh of electricity used since the beginning.
|
201 |
+
[codecarbon DEBUG @ 17:59:03] last_duration=4.0164706479990855
|
202 |
+
------------------------
|
203 |
+
[codecarbon DEBUG @ 17:59:03] EmissionsData(timestamp='2024-10-08T17:59:03', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=4.019632024981547, emissions=0.00026256754564246617, emissions_rate=6.532128911568007e-05, cpu_power=42.5, gpu_power=167.05200478675823, ram_power=0.3424544334411621, cpu_energy=0.0001484468093552601, gpu_energy=0.0005616726715600429, ram_energy=1.186648692011778e-06, energy_consumed=0.0007113061296073147, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
204 |
+
[codecarbon DEBUG @ 17:59:03] EmissionsData(timestamp='2024-10-08T17:59:03', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=0.0020059869857504964, emissions=0.00026256754564246617, emissions_rate=0.13089194870535625, cpu_power=42.5, gpu_power=167.05200478675823, ram_power=0.3424544334411621, cpu_energy=0.0001484468093552601, gpu_energy=0.0005616726715600429, ram_energy=1.186648692011778e-06, energy_consumed=0.0007113061296073147, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
205 |
+
|
206 |
0%| | 0/1000 [00:00<?, ?it/s]
|
207 |
2%|▎ | 25/1000 [00:00<00:03, 246.90it/s]
|
208 |
5%|▌ | 50/1000 [00:00<00:03, 245.74it/s]
|
209 |
8%|▊ | 75/1000 [00:00<00:03, 244.96it/s]
|
210 |
10%|█ | 100/1000 [00:00<00:03, 243.08it/s]
|
211 |
13%|█▎ | 126/1000 [00:00<00:03, 246.28it/s]
|
212 |
15%|█▌ | 151/1000 [00:00<00:03, 246.65it/s]
|
213 |
18%|█▊ | 177/1000 [00:00<00:03, 250.86it/s]
|
214 |
20%|██ | 203/1000 [00:00<00:03, 250.36it/s]
|
215 |
23%|██▎ | 229/1000 [00:00<00:03, 252.19it/s]
|
216 |
26%|██▌ | 255/1000 [00:01<00:03, 248.21it/s]
|
217 |
28%|██▊ | 281/1000 [00:01<00:02, 249.01it/s]
|
218 |
31%|███ | 308/1000 [00:01<00:02, 252.88it/s]
|
219 |
33%|███▎ | 334/1000 [00:01<00:02, 254.56it/s]
|
220 |
36%|███▌ | 361/1000 [00:01<00:02, 256.61it/s]
|
221 |
39%|███▊ | 387/1000 [00:01<00:02, 253.45it/s]
|
222 |
41%|████▏ | 413/1000 [00:01<00:02, 249.71it/s]
|
223 |
44%|████▍ | 439/1000 [00:01<00:02, 250.08it/s]
|
224 |
46%|████▋ | 465/1000 [00:01<00:02, 249.59it/s]
|
225 |
49%|████▉ | 491/1000 [00:01<00:02, 249.81it/s]
|
226 |
52%|█████▏ | 517/1000 [00:02<00:01, 252.28it/s]
|
227 |
54%|█████▍ | 543/1000 [00:02<00:01, 252.07it/s]
|
228 |
57%|█████▋ | 569/1000 [00:02<00:01, 252.67it/s]
|
229 |
60%|█████▉ | 595/1000 [00:02<00:01, 250.18it/s]
|
230 |
62%|██████▏ | 621/1000 [00:02<00:01, 250.50it/s]
|
231 |
65%|██████▍ | 647/1000 [00:02<00:01, 248.47it/s]
|
232 |
67%|██████▋ | 673/1000 [00:02<00:01, 251.61it/s]
|
233 |
70%|██████▉ | 699/1000 [00:02<00:01, 253.08it/s]
|
234 |
72%|███████▎ | 725/1000 [00:02<00:01, 249.07it/s]
|
235 |
75%|███████▌ | 751/1000 [00:02<00:00, 250.27it/s]
|
236 |
78%|███████▊ | 777/1000 [00:03<00:00, 251.77it/s]
|
237 |
80%|████████ | 803/1000 [00:03<00:00, 253.11it/s]
|
238 |
83%|████████▎ | 829/1000 [00:03<00:00, 253.76it/s]
|
239 |
86%|████████▌ | 855/1000 [00:03<00:00, 254.31it/s]
|
240 |
88%|████████▊ | 882/1000 [00:03<00:00, 256.17it/s]
|
241 |
91%|█████████ | 908/1000 [00:03<00:00, 255.12it/s]
|
242 |
93%|█████████▎| 934/1000 [00:03<00:00, 254.47it/s]
|
243 |
96%|█████████▌| 960/1000 [00:03<00:00, 253.28it/s]
|
244 |
99%|█████████▊| 986/1000 [00:03<00:00, 253.63it/s]
|
245 |
+
[codecarbon WARNING @ 17:59:07] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
246 |
+
[codecarbon INFO @ 17:59:07] Energy consumed for RAM : 0.000002 kWh. RAM Power : 0.3424544334411621 W
|
247 |
+
[codecarbon DEBUG @ 17:59:07] RAM : 0.34 W during 3.98 s [measurement time: 0.0004]
|
248 |
+
[codecarbon INFO @ 17:59:07] Energy consumed for all GPUs : 0.000749 kWh. Total GPU Power : 169.39102933190287 W
|
249 |
+
[codecarbon DEBUG @ 17:59:07] GPU : 169.39 W during 3.98 s [measurement time: 0.0057]
|
250 |
+
[codecarbon INFO @ 17:59:07] Energy consumed for all CPUs : 0.000196 kWh. Total CPU Power : 42.5 W
|
251 |
+
[codecarbon DEBUG @ 17:59:07] CPU : 42.50 W during 3.99 s [measurement time: 0.0000]
|
252 |
+
[codecarbon INFO @ 17:59:07] 0.000946 kWh of electricity used since the beginning.
|
253 |
+
[codecarbon DEBUG @ 17:59:07] last_duration=3.980210050009191
|
254 |
+
------------------------
|
255 |
+
[codecarbon DEBUG @ 17:59:07] EmissionsData(timestamp='2024-10-08T17:59:07', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=3.9868572499835864, emissions=0.00034922621806963554, emissions_rate=8.759436221878104e-05, cpu_power=42.5, gpu_power=169.39102933190287, ram_power=0.3424544334411621, cpu_energy=0.00019551266497546752, gpu_energy=0.0007489900436361552, ram_energy=1.5652790549255295e-06, energy_consumed=0.0009460679876665481, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
256 |
+
[codecarbon DEBUG @ 17:59:07] EmissionsData(timestamp='2024-10-08T17:59:07', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=0.0020373269799165428, emissions=0.00034922621806963554, emissions_rate=0.17141392693083624, cpu_power=42.5, gpu_power=169.39102933190287, ram_power=0.3424544334411621, cpu_energy=0.00019551266497546752, gpu_energy=0.0007489900436361552, ram_energy=1.5652790549255295e-06, energy_consumed=0.0009460679876665481, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
257 |
+
|
258 |
0%| | 0/1000 [00:00<?, ?it/s]
|
259 |
3%|▎ | 26/1000 [00:00<00:03, 254.16it/s]
|
260 |
5%|▌ | 52/1000 [00:00<00:03, 250.23it/s]
|
261 |
8%|▊ | 78/1000 [00:00<00:03, 247.09it/s]
|
262 |
10%|█ | 103/1000 [00:00<00:03, 242.56it/s]
|
263 |
13%|█▎ | 129/1000 [00:00<00:03, 248.30it/s]
|
264 |
16%|█▌ | 155/1000 [00:00<00:03, 249.16it/s]
|
265 |
18%|█▊ | 181/1000 [00:00<00:03, 250.59it/s]
|
266 |
21%|██ | 207/1000 [00:00<00:03, 249.97it/s]
|
267 |
23%|██▎ | 233/1000 [00:00<00:03, 252.07it/s]
|
268 |
26%|██▌ | 259/1000 [00:01<00:03, 244.62it/s]
|
269 |
28%|██▊ | 285/1000 [00:01<00:02, 248.33it/s]
|
270 |
31%|███ | 312/1000 [00:01<00:02, 252.20it/s]
|
271 |
34%|███▍ | 338/1000 [00:01<00:02, 253.66it/s]
|
272 |
36%|███▋ | 364/1000 [00:01<00:02, 255.18it/s]
|
273 |
39%|███▉ | 390/1000 [00:01<00:02, 250.87it/s]
|
274 |
42%|████▏ | 416/1000 [00:01<00:02, 250.59it/s]
|
275 |
44%|████▍ | 442/1000 [00:01<00:02, 250.61it/s]
|
276 |
47%|████▋ | 468/1000 [00:01<00:02, 249.77it/s]
|
277 |
49%|████▉ | 493/1000 [00:01<00:02, 249.56it/s]
|
278 |
52%|█████▏ | 519/1000 [00:02<00:01, 251.81it/s]
|
279 |
55%|█████▍ | 545/1000 [00:02<00:01, 249.68it/s]
|
280 |
57%|█████▋ | 570/1000 [00:02<00:01, 246.79it/s]
|
281 |
60%|█████▉ | 595/1000 [00:02<00:01, 243.39it/s]
|
282 |
62%|██████▏ | 620/1000 [00:02<00:01, 241.46it/s]
|
283 |
64%|██████▍ | 645/1000 [00:02<00:01, 240.13it/s]
|
284 |
67%|██████▋ | 670/1000 [00:02<00:01, 240.92it/s]
|
285 |
70%|██████▉ | 695/1000 [00:02<00:01, 241.48it/s]
|
286 |
72%|███████▏ | 720/1000 [00:02<00:01, 238.33it/s]
|
287 |
74%|███████▍ | 745/1000 [00:03<00:01, 239.02it/s]
|
288 |
77%|███████▋ | 771/1000 [00:03<00:00, 243.23it/s]
|
289 |
80%|███████▉ | 797/1000 [00:03<00:00, 247.73it/s]
|
290 |
82%|████████▏ | 822/1000 [00:03<00:00, 247.17it/s]
|
291 |
85%|████████▍ | 847/1000 [00:03<00:00, 245.97it/s]
|
292 |
87%|████████▋ | 872/1000 [00:03<00:00, 245.82it/s]
|
293 |
90%|████████▉ | 897/1000 [00:03<00:00, 245.22it/s]
|
294 |
92%|█████████▏| 922/1000 [00:03<00:00, 244.06it/s]
|
295 |
95%|█████████▍| 947/1000 [00:03<00:00, 241.73it/s]
|
296 |
97%|█████████▋| 972/1000 [00:03<00:00, 242.81it/s]
|
297 |
+
[codecarbon WARNING @ 17:59:11] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
298 |
+
[codecarbon INFO @ 17:59:11] Energy consumed for RAM : 0.000002 kWh. RAM Power : 0.3424544334411621 W
|
299 |
+
[codecarbon DEBUG @ 17:59:11] RAM : 0.34 W during 4.06 s [measurement time: 0.0004]
|
300 |
+
[codecarbon INFO @ 17:59:11] Energy consumed for all GPUs : 0.000935 kWh. Total GPU Power : 164.59957133524424 W
|
301 |
+
[codecarbon DEBUG @ 17:59:11] GPU : 164.60 W during 4.06 s [measurement time: 0.0023]
|
302 |
+
[codecarbon INFO @ 17:59:11] Energy consumed for all CPUs : 0.000244 kWh. Total CPU Power : 42.5 W
|
303 |
+
[codecarbon DEBUG @ 17:59:11] CPU : 42.50 W during 4.06 s [measurement time: 0.0000]
|
304 |
+
[codecarbon INFO @ 17:59:11] 0.001180 kWh of electricity used since the beginning.
|
305 |
+
[codecarbon DEBUG @ 17:59:11] last_duration=4.061729397973977
|
306 |
+
------------------------
|
307 |
+
[codecarbon DEBUG @ 17:59:11] EmissionsData(timestamp='2024-10-08T17:59:11', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=4.06493887596298, emissions=0.0004356483717862366, emissions_rate=0.00010717218267717049, cpu_power=42.5, gpu_power=164.59957133524424, ram_power=0.3424544334411621, cpu_energy=0.00024350030575171538, gpu_energy=0.00093473713667791, ram_energy=1.951664517179002e-06, energy_consumed=0.0011801891069468042, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
308 |
+
[codecarbon DEBUG @ 17:59:11] EmissionsData(timestamp='2024-10-08T17:59:11', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=0.0020743869827128947, emissions=0.0004356483717862366, emissions_rate=0.21001306671163797, cpu_power=42.5, gpu_power=164.59957133524424, ram_power=0.3424544334411621, cpu_energy=0.00024350030575171538, gpu_energy=0.00093473713667791, ram_energy=1.951664517179002e-06, energy_consumed=0.0011801891069468042, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
309 |
+
|
310 |
0%| | 0/1000 [00:00<?, ?it/s]
|
311 |
3%|▎ | 26/1000 [00:00<00:03, 253.49it/s]
|
312 |
5%|▌ | 52/1000 [00:00<00:03, 246.05it/s]
|
313 |
8%|▊ | 77/1000 [00:00<00:03, 237.82it/s]
|
314 |
10%|█ | 101/1000 [00:00<00:03, 232.28it/s]
|
315 |
13%|█▎ | 127/1000 [00:00<00:03, 239.46it/s]
|
316 |
15%|█▌ | 151/1000 [00:00<00:03, 238.06it/s]
|
317 |
18%|█▊ | 175/1000 [00:00<00:03, 238.64it/s]
|
318 |
20%|██ | 200/1000 [00:00<00:03, 239.75it/s]
|
319 |
22%|██▏ | 224/1000 [00:00<00:03, 239.64it/s]
|
320 |
25%|██▍ | 249/1000 [00:01<00:03, 240.64it/s]
|
321 |
27%|██▋ | 274/1000 [00:01<00:03, 241.51it/s]
|
322 |
30%|███ | 300/1000 [00:01<00:02, 246.17it/s]
|
323 |
33%|███▎ | 326/1000 [00:01<00:02, 248.73it/s]
|
324 |
35%|███▌ | 352/1000 [00:01<00:02, 249.20it/s]
|
325 |
38%|███▊ | 377/1000 [00:01<00:02, 247.12it/s]
|
326 |
40%|████ | 402/1000 [00:01<00:02, 246.00it/s]
|
327 |
43%|████▎ | 427/1000 [00:01<00:02, 246.37it/s]
|
328 |
45%|████▌ | 453/1000 [00:01<00:02, 247.75it/s]
|
329 |
48%|████▊ | 479/1000 [00:01<00:02, 249.39it/s]
|
330 |
50%|█████ | 504/1000 [00:02<00:02, 247.76it/s]
|
331 |
53%|█████▎ | 530/1000 [00:02<00:01, 249.00it/s]
|
332 |
56%|█████▌ | 556/1000 [00:02<00:01, 251.85it/s]
|
333 |
58%|█████▊ | 582/1000 [00:02<00:01, 250.58it/s]
|
334 |
61%|██████ | 608/1000 [00:02<00:01, 250.17it/s]
|
335 |
63%|██████▎ | 634/1000 [00:02<00:01, 251.32it/s]
|
336 |
66%|██████▌ | 660/1000 [00:02<00:01, 251.83it/s]
|
337 |
69%|██████▊ | 686/1000 [00:02<00:01, 253.65it/s]
|
338 |
71%|███████ | 712/1000 [00:02<00:01, 254.57it/s]
|
339 |
74%|███████▍ | 738/1000 [00:02<00:01, 251.56it/s]
|
340 |
76%|███████▋ | 764/1000 [00:03<00:00, 249.43it/s]
|
341 |
79%|███████▉ | 791/1000 [00:03<00:00, 252.76it/s]
|
342 |
82%|████████▏ | 817/1000 [00:03<00:00, 253.28it/s]
|
343 |
84%|████████▍ | 843/1000 [00:03<00:00, 252.86it/s]
|
344 |
87%|████████▋ | 869/1000 [00:03<00:00, 252.81it/s]
|
345 |
90%|████████▉ | 895/1000 [00:03<00:00, 253.46it/s]
|
346 |
92%|█████████▏| 921/1000 [00:03<00:00, 253.70it/s]
|
347 |
95%|█████████▍| 947/1000 [00:03<00:00, 252.55it/s]
|
348 |
97%|█████████▋| 974/1000 [00:03<00:00, 255.73it/s]
|
349 |
+
[codecarbon WARNING @ 17:59:15] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
350 |
+
[codecarbon INFO @ 17:59:15] Energy consumed for RAM : 0.000002 kWh. RAM Power : 0.3424544334411621 W
|
351 |
+
[codecarbon DEBUG @ 17:59:15] RAM : 0.34 W during 4.03 s [measurement time: 0.0004]
|
352 |
+
[codecarbon INFO @ 17:59:15] Energy consumed for all GPUs : 0.001127 kWh. Total GPU Power : 171.91285423838124 W
|
353 |
+
[codecarbon DEBUG @ 17:59:15] GPU : 171.91 W during 4.03 s [measurement time: 0.0044]
|
354 |
+
[codecarbon INFO @ 17:59:15] Energy consumed for all CPUs : 0.000291 kWh. Total CPU Power : 42.5 W
|
355 |
+
[codecarbon DEBUG @ 17:59:15] CPU : 42.50 W during 4.03 s [measurement time: 0.0000]
|
356 |
+
[codecarbon INFO @ 17:59:15] 0.001420 kWh of electricity used since the beginning.
|
357 |
+
[codecarbon DEBUG @ 17:59:15] last_duration=4.0251915629487485
|
358 |
+
------------------------
|
359 |
+
[codecarbon DEBUG @ 17:59:15] EmissionsData(timestamp='2024-10-08T17:59:15', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=4.030488848977257, emissions=0.0005243212646320117, emissions_rate=0.0001300887520790584, cpu_power=42.5, gpu_power=171.91285423838124, ram_power=0.3424544334411621, cpu_energy=0.0002910812585144919, gpu_energy=0.0011269917349259195, ram_energy=2.3345763666077327e-06, energy_consumed=0.001420407569807019, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
360 |
+
[codecarbon DEBUG @ 17:59:15] EmissionsData(timestamp='2024-10-08T17:59:15', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=0.002033536962699145, emissions=0.0005243212646320117, emissions_rate=0.2578370957841219, cpu_power=42.5, gpu_power=171.91285423838124, ram_power=0.3424544334411621, cpu_energy=0.0002910812585144919, gpu_energy=0.0011269917349259195, ram_energy=2.3345763666077327e-06, energy_consumed=0.001420407569807019, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
361 |
+
|
362 |
0%| | 0/1000 [00:00<?, ?it/s]
|
363 |
3%|▎ | 26/1000 [00:00<00:03, 256.34it/s]
|
364 |
5%|▌ | 52/1000 [00:00<00:03, 252.36it/s]
|
365 |
8%|▊ | 78/1000 [00:00<00:03, 249.87it/s]
|
366 |
10%|█ | 103/1000 [00:00<00:03, 244.91it/s]
|
367 |
13%|█▎ | 130/1000 [00:00<00:03, 250.38it/s]
|
368 |
16%|█▌ | 156/1000 [00:00<00:03, 251.01it/s]
|
369 |
18%|█▊ | 182/1000 [00:00<00:03, 248.79it/s]
|
370 |
21%|██ | 208/1000 [00:00<00:03, 250.18it/s]
|
371 |
24%|██▎ | 235/1000 [00:00<00:03, 253.79it/s]
|
372 |
26%|██▌ | 261/1000 [00:01<00:02, 246.69it/s]
|
373 |
29%|██▊ | 287/1000 [00:01<00:02, 249.91it/s]
|
374 |
31%|███▏ | 313/1000 [00:01<00:02, 252.88it/s]
|
375 |
34%|███▍ | 339/1000 [00:01<00:02, 253.97it/s]
|
376 |
36%|███▋ | 365/1000 [00:01<00:02, 255.39it/s]
|
377 |
39%|███▉ | 391/1000 [00:01<00:02, 254.58it/s]
|
378 |
42%|████▏ | 417/1000 [00:01<00:02, 252.72it/s]
|
379 |
44%|████▍ | 443/1000 [00:01<00:02, 252.28it/s]
|
380 |
47%|████▋ | 469/1000 [00:01<00:02, 251.82it/s]
|
381 |
50%|████▉ | 495/1000 [00:01<00:02, 251.06it/s]
|
382 |
52%|█████▏ | 521/1000 [00:02<00:01, 251.71it/s]
|
383 |
55%|█████▍ | 547/1000 [00:02<00:01, 253.68it/s]
|
384 |
57%|█████▋ | 573/1000 [00:02<00:01, 253.35it/s]
|
385 |
60%|█████▉ | 599/1000 [00:02<00:01, 250.66it/s]
|
386 |
62%|██████▎ | 625/1000 [00:02<00:01, 252.90it/s]
|
387 |
65%|██████▌ | 651/1000 [00:02<00:01, 250.93it/s]
|
388 |
68%|██████▊ | 677/1000 [00:02<00:01, 252.71it/s]
|
389 |
70%|███████ | 704/1000 [00:02<00:01, 255.21it/s]
|
390 |
73%|███████▎ | 730/1000 [00:02<00:01, 250.65it/s]
|
391 |
76%|███████▌ | 756/1000 [00:03<00:00, 251.30it/s]
|
392 |
78%|███████▊ | 782/1000 [00:03<00:00, 252.96it/s]
|
393 |
81%|████████ | 808/1000 [00:03<00:00, 254.38it/s]
|
394 |
83%|████████▎ | 834/1000 [00:03<00:00, 254.74it/s]
|
395 |
86%|████████▌ | 860/1000 [00:03<00:00, 254.02it/s]
|
396 |
89%|████████▊ | 887/1000 [00:03<00:00, 256.18it/s]
|
397 |
91%|█████████▏| 913/1000 [00:03<00:00, 255.58it/s]
|
398 |
94%|█████████▍| 939/1000 [00:03<00:00, 254.93it/s]
|
399 |
96%|█████████▋| 965/1000 [00:03<00:00, 254.22it/s]
|
400 |
99%|█████████▉| 991/1000 [00:03<00:00, 255.31it/s]
|
401 |
+
[codecarbon WARNING @ 17:59:19] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
402 |
+
[codecarbon INFO @ 17:59:19] Energy consumed for RAM : 0.000003 kWh. RAM Power : 0.3424544334411621 W
|
403 |
+
[codecarbon DEBUG @ 17:59:19] RAM : 0.34 W during 3.96 s [measurement time: 0.0004]
|
404 |
+
[codecarbon INFO @ 17:59:19] Energy consumed for all GPUs : 0.001313 kWh. Total GPU Power : 169.48671672729446 W
|
405 |
+
[codecarbon DEBUG @ 17:59:19] GPU : 169.49 W during 3.96 s [measurement time: 0.0023]
|
406 |
+
[codecarbon INFO @ 17:59:19] Energy consumed for all CPUs : 0.000338 kWh. Total CPU Power : 42.5 W
|
407 |
+
[codecarbon DEBUG @ 17:59:19] CPU : 42.50 W during 3.96 s [measurement time: 0.0000]
|
408 |
+
[codecarbon INFO @ 17:59:19] 0.001654 kWh of electricity used since the beginning.
|
409 |
+
[codecarbon DEBUG @ 17:59:19] EmissionsData(timestamp='2024-10-08T17:59:19', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=3.9638759350054897, emissions=0.0006105790122141629, emissions_rate=0.00015403585334799772, cpu_power=42.5, gpu_power=169.48671672729446, ram_power=0.3424544334411621, cpu_energy=0.00033787590361902814, gpu_energy=0.0013134960507956706, ram_energy=2.7113517868390922e-06, energy_consumed=0.0016540833062015374, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
410 |
+
[codecarbon INFO @ 17:59:19] 0.021772 g.CO2eq/s mean an estimation of 686.6058905055264 kg.CO2eq/year
|
411 |
+
[codecarbon DEBUG @ 17:59:19] last_duration=3.960711147985421
|
412 |
+
------------------------
|
413 |
+
[codecarbon DEBUG @ 17:59:19] EmissionsData(timestamp='2024-10-08T17:59:19', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=3.964210390986409, emissions=0.0006105790122141629, emissions_rate=0.00015402285751595375, cpu_power=42.5, gpu_power=169.48671672729446, ram_power=0.3424544334411621, cpu_energy=0.00033787590361902814, gpu_energy=0.0013134960507956706, ram_energy=2.7113517868390922e-06, energy_consumed=0.0016540833062015374, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
414 |
+
[codecarbon DEBUG @ 17:59:19] EmissionsData(timestamp='2024-10-08T17:59:19', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=0.0020128259784542024, emissions=0.0006105790122141629, emissions_rate=0.3033441632560166, cpu_power=42.5, gpu_power=169.48671672729446, ram_power=0.3424544334411621, cpu_energy=0.00033787590361902814, gpu_energy=0.0013134960507956706, ram_energy=2.7113517868390922e-06, energy_consumed=0.0016540833062015374, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
415 |
+
|
416 |
0%| | 0/1000 [00:00<?, ?it/s]
|
417 |
3%|▎ | 26/1000 [00:00<00:03, 254.47it/s]
|
418 |
5%|▌ | 52/1000 [00:00<00:03, 250.55it/s]
|
419 |
8%|▊ | 78/1000 [00:00<00:03, 247.69it/s]
|
420 |
10%|█ | 103/1000 [00:00<00:03, 242.94it/s]
|
421 |
13%|█▎ | 129/1000 [00:00<00:03, 248.06it/s]
|
422 |
15%|█▌ | 154/1000 [00:00<00:03, 248.51it/s]
|
423 |
18%|█▊ | 180/1000 [00:00<00:03, 250.10it/s]
|
424 |
21%|██ | 206/1000 [00:00<00:03, 249.18it/s]
|
425 |
23%|██▎ | 232/1000 [00:00<00:03, 252.32it/s]
|
426 |
26%|██▌ | 258/1000 [00:01<00:03, 245.23it/s]
|
427 |
28%|██▊ | 283/1000 [00:01<00:02, 246.60it/s]
|
428 |
31%|███ | 310/1000 [00:01<00:02, 250.90it/s]
|
429 |
34%|███▎ | 336/1000 [00:01<00:02, 252.12it/s]
|
430 |
36%|███▋ | 363/1000 [00:01<00:02, 254.53it/s]
|
431 |
39%|███▉ | 389/1000 [00:01<00:02, 253.83it/s]
|
432 |
42%|████▏ | 415/1000 [00:01<00:02, 252.35it/s]
|
433 |
44%|████▍ | 441/1000 [00:01<00:02, 250.12it/s]
|
434 |
47%|████▋ | 467/1000 [00:01<00:02, 247.71it/s]
|
435 |
49%|████▉ | 492/1000 [00:01<00:02, 247.99it/s]
|
436 |
52%|█████▏ | 518/1000 [00:02<00:01, 250.60it/s]
|
437 |
54%|█████▍ | 544/1000 [00:02<00:01, 248.35it/s]
|
438 |
57%|█████▋ | 569/1000 [00:02<00:01, 246.44it/s]
|
439 |
59%|█████▉ | 594/1000 [00:02<00:01, 242.71it/s]
|
440 |
62%|██████▏ | 619/1000 [00:02<00:01, 243.15it/s]
|
441 |
64%|██████▍ | 644/1000 [00:02<00:01, 241.37it/s]
|
442 |
67%|██████▋ | 669/1000 [00:02<00:01, 241.38it/s]
|
443 |
69%|██████▉ | 694/1000 [00:02<00:01, 241.61it/s]
|
444 |
72%|███████▏ | 719/1000 [00:02<00:01, 237.80it/s]
|
445 |
74%|███████▍ | 743/1000 [00:03<00:01, 237.61it/s]
|
446 |
77%|███████▋ | 768/1000 [00:03<00:00, 238.71it/s]
|
447 |
79%|███████▉ | 793/1000 [00:03<00:00, 240.83it/s]
|
448 |
82%|████████▏ | 818/1000 [00:03<00:00, 240.87it/s]
|
449 |
84%|████████▍ | 843/1000 [00:03<00:00, 241.71it/s]
|
450 |
87%|████████▋ | 868/1000 [00:03<00:00, 242.39it/s]
|
451 |
89%|████████▉ | 893/1000 [00:03<00:00, 242.86it/s]
|
452 |
92%|█████████▏| 918/1000 [00:03<00:00, 241.75it/s]
|
453 |
94%|█████████▍| 943/1000 [00:03<00:00, 241.38it/s]
|
454 |
97%|█████████▋| 968/1000 [00:03<00:00, 242.27it/s]
|
455 |
99%|█████████▉| 993/1000 [00:04<00:00, 242.55it/s]
|
456 |
+
[codecarbon WARNING @ 17:59:23] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
457 |
+
[codecarbon INFO @ 17:59:23] Energy consumed for RAM : 0.000003 kWh. RAM Power : 0.3424558639526367 W
|
458 |
+
[codecarbon DEBUG @ 17:59:23] RAM : 0.34 W during 4.08 s [measurement time: 0.0004]
|
459 |
+
[codecarbon INFO @ 17:59:23] Energy consumed for all GPUs : 0.001508 kWh. Total GPU Power : 171.7353126237883 W
|
460 |
+
[codecarbon DEBUG @ 17:59:23] GPU : 171.74 W during 4.08 s [measurement time: 0.0023]
|
461 |
+
[codecarbon INFO @ 17:59:23] Energy consumed for all CPUs : 0.000386 kWh. Total CPU Power : 42.5 W
|
462 |
+
[codecarbon DEBUG @ 17:59:23] CPU : 42.50 W during 4.08 s [measurement time: 0.0000]
|
463 |
+
[codecarbon INFO @ 17:59:23] 0.001897 kWh of electricity used since the beginning.
|
464 |
+
[codecarbon DEBUG @ 17:59:23] last_duration=4.077959813992493
|
465 |
+
------------------------
|
466 |
+
[codecarbon DEBUG @ 17:59:23] EmissionsData(timestamp='2024-10-08T17:59:23', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=4.081150561978575, emissions=0.0007003302978168092, emissions_rate=0.00017160119117910793, cpu_power=42.5, gpu_power=171.7353126237883, ram_power=0.3424558639526367, cpu_energy=0.0003860549116953028, gpu_energy=0.0015080689842323913, ram_energy=3.099282846784404e-06, energy_consumed=0.0018972231787744783, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
467 |
+
[codecarbon DEBUG @ 17:59:23] EmissionsData(timestamp='2024-10-08T17:59:23', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=0.002016487007495016, emissions=0.0007003302978168092, emissions_rate=0.3473021622325232, cpu_power=42.5, gpu_power=171.7353126237883, ram_power=0.3424558639526367, cpu_energy=0.0003860549116953028, gpu_energy=0.0015080689842323913, ram_energy=3.099282846784404e-06, energy_consumed=0.0018972231787744783, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
468 |
+
|
469 |
0%| | 0/1000 [00:00<?, ?it/s]
|
470 |
2%|▎ | 25/1000 [00:00<00:04, 242.52it/s]
|
471 |
5%|▌ | 50/1000 [00:00<00:03, 240.55it/s]
|
472 |
8%|▊ | 75/1000 [00:00<00:03, 242.22it/s]
|
473 |
10%|█ | 100/1000 [00:00<00:03, 241.19it/s]
|
474 |
12%|█▎ | 125/1000 [00:00<00:03, 242.73it/s]
|
475 |
15%|█▌ | 150/1000 [00:00<00:03, 240.73it/s]
|
476 |
18%|█▊ | 175/1000 [00:00<00:03, 242.70it/s]
|
477 |
20%|██ | 200/1000 [00:00<00:03, 240.13it/s]
|
478 |
22%|██▎ | 225/1000 [00:00<00:03, 240.01it/s]
|
479 |
25%|██▌ | 250/1000 [00:01<00:03, 237.23it/s]
|
480 |
27%|██▋ | 274/1000 [00:01<00:03, 237.24it/s]
|
481 |
30%|██▉ | 299/1000 [00:01<00:02, 239.74it/s]
|
482 |
32%|███▏ | 324/1000 [00:01<00:02, 241.47it/s]
|
483 |
35%|███▍ | 349/1000 [00:01<00:02, 243.73it/s]
|
484 |
38%|███▊ | 375/1000 [00:01<00:02, 245.75it/s]
|
485 |
40%|████ | 400/1000 [00:01<00:02, 244.57it/s]
|
486 |
42%|████▎ | 425/1000 [00:01<00:02, 245.05it/s]
|
487 |
45%|████▌ | 450/1000 [00:01<00:02, 244.24it/s]
|
488 |
48%|████▊ | 475/1000 [00:01<00:02, 244.49it/s]
|
489 |
50%|█████ | 500/1000 [00:02<00:02, 242.59it/s]
|
490 |
52%|█████▎ | 525/1000 [00:02<00:01, 243.59it/s]
|
491 |
55%|█████▌ | 551/1000 [00:02<00:01, 247.24it/s]
|
492 |
58%|█████▊ | 576/1000 [00:02<00:01, 245.81it/s]
|
493 |
60%|██████ | 601/1000 [00:02<00:01, 243.16it/s]
|
494 |
63%|██████▎ | 626/1000 [00:02<00:01, 244.05it/s]
|
495 |
65%|██████▌ | 651/1000 [00:02<00:01, 243.89it/s]
|
496 |
68%|██████▊ | 677/1000 [00:02<00:01, 245.16it/s]
|
497 |
70%|███████ | 703/1000 [00:02<00:01, 247.32it/s]
|
498 |
73%|███████▎ | 728/1000 [00:02<00:01, 243.13it/s]
|
499 |
75%|███████▌ | 753/1000 [00:03<00:01, 243.64it/s]
|
500 |
78%|███████▊ | 778/1000 [00:03<00:00, 245.10it/s]
|
501 |
80%|████████ | 803/1000 [00:03<00:00, 246.28it/s]
|
502 |
83%|████████▎ | 828/1000 [00:03<00:00, 246.06it/s]
|
503 |
85%|████████▌ | 854/1000 [00:03<00:00, 246.18it/s]
|
504 |
88%|████████▊ | 880/1000 [00:03<00:00, 248.47it/s]
|
505 |
91%|█████████ | 906/1000 [00:03<00:00, 249.94it/s]
|
506 |
93%|█████████▎| 933/1000 [00:03<00:00, 253.03it/s]
|
507 |
96%|█████████▌| 959/1000 [00:03<00:00, 252.77it/s]
|
508 |
99%|█████████▊| 986/1000 [00:04<00:00, 255.04it/s]
|
509 |
+
[codecarbon WARNING @ 17:59:27] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
510 |
+
[codecarbon INFO @ 17:59:27] Energy consumed for RAM : 0.000003 kWh. RAM Power : 0.3424558639526367 W
|
511 |
+
[codecarbon DEBUG @ 17:59:27] RAM : 0.34 W during 4.08 s [measurement time: 0.0004]
|
512 |
+
[codecarbon INFO @ 17:59:27] Energy consumed for all GPUs : 0.001702 kWh. Total GPU Power : 171.1882462780792 W
|
513 |
+
[codecarbon DEBUG @ 17:59:27] GPU : 171.19 W during 4.08 s [measurement time: 0.0051]
|
514 |
+
[codecarbon INFO @ 17:59:27] Energy consumed for all CPUs : 0.000434 kWh. Total CPU Power : 42.5 W
|
515 |
+
[codecarbon DEBUG @ 17:59:27] CPU : 42.50 W during 4.09 s [measurement time: 0.0000]
|
516 |
+
[codecarbon INFO @ 17:59:27] 0.002140 kWh of electricity used since the beginning.
|
517 |
+
[codecarbon DEBUG @ 17:59:27] last_duration=4.082152049988508
|
518 |
+
------------------------
|
519 |
+
[codecarbon DEBUG @ 17:59:27] EmissionsData(timestamp='2024-10-08T17:59:27', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=4.0881955699878745, emissions=0.0007899577910613205, emissions_rate=0.00019322896312997656, cpu_power=42.5, gpu_power=171.1882462780792, ram_power=0.3424558639526367, cpu_energy=0.00043431705151916614, gpu_energy=0.0017022230284440276, ram_energy=3.4876128656220862e-06, energy_consumed=0.0021400276928288157, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
520 |
+
[codecarbon DEBUG @ 17:59:27] EmissionsData(timestamp='2024-10-08T17:59:27', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=0.002023297012783587, emissions=0.0007899577910613205, emissions_rate=0.3904309580206032, cpu_power=42.5, gpu_power=171.1882462780792, ram_power=0.3424558639526367, cpu_energy=0.00043431705151916614, gpu_energy=0.0017022230284440276, ram_energy=3.4876128656220862e-06, energy_consumed=0.0021400276928288157, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
521 |
+
|
522 |
0%| | 0/1000 [00:00<?, ?it/s]
|
523 |
2%|▎ | 25/1000 [00:00<00:03, 247.35it/s]
|
524 |
5%|▌ | 50/1000 [00:00<00:03, 244.09it/s]
|
525 |
8%|▊ | 75/1000 [00:00<00:03, 241.31it/s]
|
526 |
10%|█ | 100/1000 [00:00<00:03, 238.75it/s]
|
527 |
12%|█▎ | 125/1000 [00:00<00:03, 241.82it/s]
|
528 |
15%|█▌ | 150/1000 [00:00<00:03, 241.12it/s]
|
529 |
18%|█▊ | 175/1000 [00:00<00:03, 243.35it/s]
|
530 |
20%|██ | 200/1000 [00:00<00:03, 241.74it/s]
|
531 |
22%|██▎ | 225/1000 [00:00<00:03, 243.70it/s]
|
532 |
25%|██▌ | 250/1000 [00:01<00:03, 240.77it/s]
|
533 |
28%|██▊ | 275/1000 [00:01<00:03, 241.11it/s]
|
534 |
30%|███ | 300/1000 [00:01<00:02, 243.57it/s]
|
535 |
32%|███▎ | 325/1000 [00:01<00:02, 244.69it/s]
|
536 |
35%|███▌ | 351/1000 [00:01<00:02, 246.97it/s]
|
537 |
38%|███▊ | 377/1000 [00:01<00:02, 248.62it/s]
|
538 |
40%|████ | 402/1000 [00:01<00:02, 248.07it/s]
|
539 |
43%|████▎ | 427/1000 [00:01<00:02, 248.14it/s]
|
540 |
45%|████▌ | 453/1000 [00:01<00:02, 250.00it/s]
|
541 |
48%|████▊ | 479/1000 [00:01<00:02, 251.53it/s]
|
542 |
50%|█████ | 505/1000 [00:02<00:02, 247.43it/s]
|
543 |
53%|█████▎ | 530/1000 [00:02<00:01, 245.40it/s]
|
544 |
56%|█████▌ | 555/1000 [00:02<00:01, 245.89it/s]
|
545 |
58%|█████▊ | 580/1000 [00:02<00:01, 243.36it/s]
|
546 |
60%|██████ | 605/1000 [00:02<00:01, 242.16it/s]
|
547 |
63%|██████▎ | 630/1000 [00:02<00:01, 242.58it/s]
|
548 |
66%|██████▌ | 655/1000 [00:02<00:01, 241.85it/s]
|
549 |
68%|██████▊ | 680/1000 [00:02<00:01, 242.80it/s]
|
550 |
71%|███████ | 706/1000 [00:02<00:01, 245.48it/s]
|
551 |
73%|███████▎ | 731/1000 [00:02<00:01, 241.41it/s]
|
552 |
76%|███████▌ | 756/1000 [00:03<00:01, 241.53it/s]
|
553 |
78%|███████▊ | 781/1000 [00:03<00:00, 243.42it/s]
|
554 |
81%|████████ | 806/1000 [00:03<00:00, 244.30it/s]
|
555 |
83%|████████▎ | 831/1000 [00:03<00:00, 244.40it/s]
|
556 |
86%|████████▌ | 856/1000 [00:03<00:00, 244.32it/s]
|
557 |
88%|████████▊ | 881/1000 [00:03<00:00, 245.71it/s]
|
558 |
91%|█████████ | 906/1000 [00:03<00:00, 244.25it/s]
|
559 |
93%|█████████▎| 931/1000 [00:03<00:00, 244.83it/s]
|
560 |
96%|█████████▌| 956/1000 [00:03<00:00, 244.19it/s]
|
561 |
98%|█████████▊| 982/1000 [00:04<00:00, 247.25it/s]
|
562 |
+
[codecarbon WARNING @ 17:59:31] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
563 |
+
[codecarbon INFO @ 17:59:31] Energy consumed for RAM : 0.000004 kWh. RAM Power : 0.3424558639526367 W
|
564 |
+
[codecarbon DEBUG @ 17:59:31] RAM : 0.34 W during 4.09 s [measurement time: 0.0004]
|
565 |
+
[codecarbon INFO @ 17:59:31] Energy consumed for all GPUs : 0.001896 kWh. Total GPU Power : 170.7079425795162 W
|
566 |
+
[codecarbon DEBUG @ 17:59:31] GPU : 170.71 W during 4.09 s [measurement time: 0.0043]
|
567 |
+
[codecarbon INFO @ 17:59:31] Energy consumed for all CPUs : 0.000483 kWh. Total CPU Power : 42.5 W
|
568 |
+
[codecarbon DEBUG @ 17:59:31] CPU : 42.50 W during 4.10 s [measurement time: 0.0001]
|
569 |
+
[codecarbon INFO @ 17:59:31] 0.002383 kWh of electricity used since the beginning.
|
570 |
+
[codecarbon DEBUG @ 17:59:31] last_duration=4.092542611004319
|
571 |
+
------------------------
|
572 |
+
[codecarbon DEBUG @ 17:59:31] EmissionsData(timestamp='2024-10-08T17:59:31', project_name='codecarbon', run_id='42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1', duration=4.097723815008067, emissions=0.0008796074283061246, emissions_rate=0.0002146575679611519, cpu_power=42.5, gpu_power=170.7079425795162, ram_power=0.3424558639526367, cpu_energy=0.00048269152504043544, gpu_energy=0.0018963237392801702, ram_energy=3.87693155739391e-06, energy_consumed=0.0023828921958779993, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/experiment_config.json
ADDED
@@ -0,0 +1,107 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"experiment_name": "text_classification",
|
3 |
+
"backend": {
|
4 |
+
"name": "pytorch",
|
5 |
+
"version": "2.4.0",
|
6 |
+
"_target_": "optimum_benchmark.backends.pytorch.backend.PyTorchBackend",
|
7 |
+
"task": "text-classification",
|
8 |
+
"model": "distilbert/distilbert-base-uncased-finetuned-sst-2-english",
|
9 |
+
"processor": "distilbert/distilbert-base-uncased-finetuned-sst-2-english",
|
10 |
+
"library": "transformers",
|
11 |
+
"device": "cuda",
|
12 |
+
"device_ids": "0",
|
13 |
+
"seed": 42,
|
14 |
+
"inter_op_num_threads": null,
|
15 |
+
"intra_op_num_threads": null,
|
16 |
+
"hub_kwargs": {
|
17 |
+
"revision": "main",
|
18 |
+
"force_download": false,
|
19 |
+
"local_files_only": false,
|
20 |
+
"trust_remote_code": true
|
21 |
+
},
|
22 |
+
"no_weights": true,
|
23 |
+
"device_map": null,
|
24 |
+
"torch_dtype": null,
|
25 |
+
"amp_autocast": false,
|
26 |
+
"amp_dtype": null,
|
27 |
+
"eval_mode": true,
|
28 |
+
"to_bettertransformer": false,
|
29 |
+
"low_cpu_mem_usage": null,
|
30 |
+
"attn_implementation": null,
|
31 |
+
"cache_implementation": null,
|
32 |
+
"torch_compile": false,
|
33 |
+
"torch_compile_config": {},
|
34 |
+
"quantization_scheme": null,
|
35 |
+
"quantization_config": {},
|
36 |
+
"deepspeed_inference": false,
|
37 |
+
"deepspeed_inference_config": {},
|
38 |
+
"peft_type": null,
|
39 |
+
"peft_config": {}
|
40 |
+
},
|
41 |
+
"launcher": {
|
42 |
+
"name": "process",
|
43 |
+
"_target_": "optimum_benchmark.launchers.process.launcher.ProcessLauncher",
|
44 |
+
"device_isolation": true,
|
45 |
+
"device_isolation_action": "warn",
|
46 |
+
"start_method": "spawn"
|
47 |
+
},
|
48 |
+
"benchmark": {
|
49 |
+
"name": "energy_star",
|
50 |
+
"_target_": "optimum_benchmark.benchmarks.energy_star.benchmark.EnergyStarBenchmark",
|
51 |
+
"dataset_name": "EnergyStarAI/text_classification",
|
52 |
+
"dataset_config": "",
|
53 |
+
"dataset_split": "train",
|
54 |
+
"num_samples": 1000,
|
55 |
+
"input_shapes": {
|
56 |
+
"batch_size": 1
|
57 |
+
},
|
58 |
+
"text_column_name": "text",
|
59 |
+
"truncation": true,
|
60 |
+
"max_length": -1,
|
61 |
+
"dataset_prefix1": "",
|
62 |
+
"dataset_prefix2": "",
|
63 |
+
"t5_task": "",
|
64 |
+
"image_column_name": "image",
|
65 |
+
"resize": false,
|
66 |
+
"question_column_name": "question",
|
67 |
+
"context_column_name": "context",
|
68 |
+
"sentence1_column_name": "sentence1",
|
69 |
+
"sentence2_column_name": "sentence2",
|
70 |
+
"audio_column_name": "audio",
|
71 |
+
"iterations": 10,
|
72 |
+
"warmup_runs": 10,
|
73 |
+
"energy": true,
|
74 |
+
"forward_kwargs": {},
|
75 |
+
"generate_kwargs": {},
|
76 |
+
"call_kwargs": {}
|
77 |
+
},
|
78 |
+
"environment": {
|
79 |
+
"cpu": " AMD EPYC 7R32",
|
80 |
+
"cpu_count": 48,
|
81 |
+
"cpu_ram_mb": 200472.73984,
|
82 |
+
"system": "Linux",
|
83 |
+
"machine": "x86_64",
|
84 |
+
"platform": "Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35",
|
85 |
+
"processor": "x86_64",
|
86 |
+
"python_version": "3.9.20",
|
87 |
+
"gpu": [
|
88 |
+
"NVIDIA A10G"
|
89 |
+
],
|
90 |
+
"gpu_count": 1,
|
91 |
+
"gpu_vram_mb": 24146608128,
|
92 |
+
"optimum_benchmark_version": "0.2.0",
|
93 |
+
"optimum_benchmark_commit": null,
|
94 |
+
"transformers_version": "4.44.0",
|
95 |
+
"transformers_commit": null,
|
96 |
+
"accelerate_version": "0.33.0",
|
97 |
+
"accelerate_commit": null,
|
98 |
+
"diffusers_version": "0.30.0",
|
99 |
+
"diffusers_commit": null,
|
100 |
+
"optimum_version": null,
|
101 |
+
"optimum_commit": null,
|
102 |
+
"timm_version": null,
|
103 |
+
"timm_commit": null,
|
104 |
+
"peft_version": null,
|
105 |
+
"peft_commit": null
|
106 |
+
}
|
107 |
+
}
|
runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/forward_codecarbon.json
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"timestamp": "2024-10-08T17:59:31",
|
3 |
+
"project_name": "codecarbon",
|
4 |
+
"run_id": "42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1",
|
5 |
+
"duration": -1728029664.1765363,
|
6 |
+
"emissions": 8.964963724480415e-05,
|
7 |
+
"emissions_rate": 2.1888718877493718e-05,
|
8 |
+
"cpu_power": 42.5,
|
9 |
+
"gpu_power": 170.7079425795162,
|
10 |
+
"ram_power": 0.3424558639526367,
|
11 |
+
"cpu_energy": 4.8374473521269295e-05,
|
12 |
+
"gpu_energy": 0.00019410071083614255,
|
13 |
+
"ram_energy": 3.89318691771824e-07,
|
14 |
+
"energy_consumed": 0.00024286450304918366,
|
15 |
+
"country_name": "United States",
|
16 |
+
"country_iso_code": "USA",
|
17 |
+
"region": "virginia",
|
18 |
+
"cloud_provider": "",
|
19 |
+
"cloud_region": "",
|
20 |
+
"os": "Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35",
|
21 |
+
"python_version": "3.9.20",
|
22 |
+
"codecarbon_version": "2.5.1",
|
23 |
+
"cpu_count": 48,
|
24 |
+
"cpu_model": "AMD EPYC 7R32",
|
25 |
+
"gpu_count": 1,
|
26 |
+
"gpu_model": "1 x NVIDIA A10G",
|
27 |
+
"longitude": -77.4903,
|
28 |
+
"latitude": 39.0469,
|
29 |
+
"ram_total_size": 186.7047882080078,
|
30 |
+
"tracking_mode": "process",
|
31 |
+
"on_cloud": "N",
|
32 |
+
"pue": 1.0
|
33 |
+
}
|
runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-58-38/preprocess_codecarbon.json
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"timestamp": "2024-10-08T17:58:50",
|
3 |
+
"project_name": "codecarbon",
|
4 |
+
"run_id": "42e88f8b-7a9b-47e2-909c-0d4bfb5d29f1",
|
5 |
+
"duration": -1728029667.84727,
|
6 |
+
"emissions": 4.718287752181354e-06,
|
7 |
+
"emissions_rate": 1.1099997118975963e-05,
|
8 |
+
"cpu_power": 42.5,
|
9 |
+
"gpu_power": 65.29715667853465,
|
10 |
+
"ram_power": 0.272127628326416,
|
11 |
+
"cpu_energy": 5.042474785700001e-06,
|
12 |
+
"gpu_energy": 7.707506165743894e-06,
|
13 |
+
"ram_energy": 3.2051920005208315e-08,
|
14 |
+
"energy_consumed": 1.2782032871449104e-05,
|
15 |
+
"country_name": "United States",
|
16 |
+
"country_iso_code": "USA",
|
17 |
+
"region": "virginia",
|
18 |
+
"cloud_provider": "",
|
19 |
+
"cloud_region": "",
|
20 |
+
"os": "Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35",
|
21 |
+
"python_version": "3.9.20",
|
22 |
+
"codecarbon_version": "2.5.1",
|
23 |
+
"cpu_count": 48,
|
24 |
+
"cpu_model": "AMD EPYC 7R32",
|
25 |
+
"gpu_count": 1,
|
26 |
+
"gpu_model": "1 x NVIDIA A10G",
|
27 |
+
"longitude": -77.4903,
|
28 |
+
"latitude": 39.0469,
|
29 |
+
"ram_total_size": 186.7047882080078,
|
30 |
+
"tracking_mode": "process",
|
31 |
+
"on_cloud": "N",
|
32 |
+
"pue": 1.0
|
33 |
+
}
|