Upload folder using huggingface_hub
Browse files- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-45-32/.hydra/config.yaml +94 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-45-32/.hydra/hydra.yaml +175 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-45-32/.hydra/overrides.yaml +2 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-45-32/benchmark_report.json +107 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-45-32/cli.log +113 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-45-32/error.log +178 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-45-32/experiment_config.json +107 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-45-32/forward_codecarbon.json +33 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-45-32/preprocess_codecarbon.json +33 -0
runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-45-32/.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-45-32/.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-45-32
|
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-45-32
|
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-45-32
|
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-45-32/.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-45-32/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.340486200077674e-05,
|
9 |
+
"ram": 3.4853483054122034e-07,
|
10 |
+
"gpu": 0.0001654198545578467,
|
11 |
+
"total": 0.00020917325138916464
|
12 |
+
},
|
13 |
+
"efficiency": {
|
14 |
+
"unit": "samples/kWh",
|
15 |
+
"value": 4780725.993207948
|
16 |
+
},
|
17 |
+
"measures": [
|
18 |
+
{
|
19 |
+
"unit": "kWh",
|
20 |
+
"cpu": 4.9037691097409055e-05,
|
21 |
+
"ram": 3.9375006002685676e-07,
|
22 |
+
"gpu": 0.00017859375398554533,
|
23 |
+
"total": 0.00022802519514298123
|
24 |
+
},
|
25 |
+
{
|
26 |
+
"unit": "kWh",
|
27 |
+
"cpu": 4.793893785447128e-05,
|
28 |
+
"ram": 3.850135831658691e-07,
|
29 |
+
"gpu": 0.00018277292399648815,
|
30 |
+
"total": 0.0002310968754341253
|
31 |
+
},
|
32 |
+
{
|
33 |
+
"unit": "kWh",
|
34 |
+
"cpu": 4.8126292304287864e-05,
|
35 |
+
"ram": 3.8651488418545767e-07,
|
36 |
+
"gpu": 0.00018345181342738215,
|
37 |
+
"total": 0.0002319646206158555
|
38 |
+
},
|
39 |
+
{
|
40 |
+
"unit": "kWh",
|
41 |
+
"cpu": 4.808014399774644e-05,
|
42 |
+
"ram": 3.861620308412936e-07,
|
43 |
+
"gpu": 0.0001836015357703502,
|
44 |
+
"total": 0.00023206784179893804
|
45 |
+
},
|
46 |
+
{
|
47 |
+
"unit": "kWh",
|
48 |
+
"cpu": 4.810018639529718e-05,
|
49 |
+
"ram": 3.8631821288118384e-07,
|
50 |
+
"gpu": 0.00017927403230810768,
|
51 |
+
"total": 0.0002277605369162861
|
52 |
+
},
|
53 |
+
{
|
54 |
+
"unit": "kWh",
|
55 |
+
"cpu": 4.813017035849046e-05,
|
56 |
+
"ram": 3.86317397807642e-07,
|
57 |
+
"gpu": 0.0001860326488261066,
|
58 |
+
"total": 0.0002345491365824048
|
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.8454789241724134e-05,
|
70 |
+
"ram": 3.891742910724421e-07,
|
71 |
+
"gpu": 0.00018742376104885494,
|
72 |
+
"total": 0.00023626772458165148
|
73 |
+
},
|
74 |
+
{
|
75 |
+
"unit": "kWh",
|
76 |
+
"cpu": 4.828286518418788e-05,
|
77 |
+
"ram": 3.877825251906586e-07,
|
78 |
+
"gpu": 0.00018326903550303086,
|
79 |
+
"total": 0.0002319396832124092
|
80 |
+
},
|
81 |
+
{
|
82 |
+
"unit": "kWh",
|
83 |
+
"cpu": 4.789754357415306e-05,
|
84 |
+
"ram": 3.8431532024079956e-07,
|
85 |
+
"gpu": 0.000189779040712601,
|
86 |
+
"total": 0.0002380608996069948
|
87 |
+
}
|
88 |
+
]
|
89 |
+
},
|
90 |
+
"preprocess": {
|
91 |
+
"memory": null,
|
92 |
+
"latency": null,
|
93 |
+
"throughput": null,
|
94 |
+
"energy": {
|
95 |
+
"unit": "kWh",
|
96 |
+
"cpu": 5.077258202800295e-06,
|
97 |
+
"ram": 3.216463597966938e-08,
|
98 |
+
"gpu": 7.4900059923166395e-06,
|
99 |
+
"total": 1.2599428831096603e-05
|
100 |
+
},
|
101 |
+
"efficiency": {
|
102 |
+
"unit": "samples/kWh",
|
103 |
+
"value": 79368677.21589917
|
104 |
+
},
|
105 |
+
"measures": null
|
106 |
+
}
|
107 |
+
}
|
runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-45-32/cli.log
ADDED
@@ -0,0 +1,113 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[2024-10-08 17:45:35,866][launcher][INFO] - ََAllocating process launcher
|
2 |
+
[2024-10-08 17:45:35,867][process][INFO] - + Setting multiprocessing start method to spawn.
|
3 |
+
[2024-10-08 17:45:35,878][device-isolation][INFO] - + Launched device(s) isolation process 180
|
4 |
+
[2024-10-08 17:45:35,879][device-isolation][INFO] - + Isolating device(s) [0]
|
5 |
+
[2024-10-08 17:45:35,884][process][INFO] - + Launched benchmark in isolated process 181.
|
6 |
+
[PROC-0][2024-10-08 17:45:38,534][datasets][INFO] - PyTorch version 2.4.0 available.
|
7 |
+
[PROC-0][2024-10-08 17:45:39,463][backend][INFO] - َAllocating pytorch backend
|
8 |
+
[PROC-0][2024-10-08 17:45:39,464][backend][INFO] - + Setting random seed to 42
|
9 |
+
[PROC-0][2024-10-08 17:45:40,036][pytorch][INFO] - + Using AutoModel class AutoModelForSequenceClassification
|
10 |
+
[PROC-0][2024-10-08 17:45:40,036][pytorch][INFO] - + Creating backend temporary directory
|
11 |
+
[PROC-0][2024-10-08 17:45:40,036][pytorch][INFO] - + Loading model with random weights
|
12 |
+
[PROC-0][2024-10-08 17:45:40,036][pytorch][INFO] - + Creating no weights model
|
13 |
+
[PROC-0][2024-10-08 17:45:40,036][pytorch][INFO] - + Creating no weights model directory
|
14 |
+
[PROC-0][2024-10-08 17:45:40,037][pytorch][INFO] - + Creating no weights model state dict
|
15 |
+
[PROC-0][2024-10-08 17:45:40,039][pytorch][INFO] - + Saving no weights model safetensors
|
16 |
+
[PROC-0][2024-10-08 17:45:40,039][pytorch][INFO] - + Saving no weights model pretrained config
|
17 |
+
[PROC-0][2024-10-08 17:45:40,040][pytorch][INFO] - + Loading no weights AutoModel
|
18 |
+
[PROC-0][2024-10-08 17:45:40,040][pytorch][INFO] - + Loading model directly on device: cuda
|
19 |
+
[PROC-0][2024-10-08 17:45:40,194][pytorch][INFO] - + Turning on model's eval mode
|
20 |
+
[PROC-0][2024-10-08 17:45:40,200][benchmark][INFO] - Allocating energy_star benchmark
|
21 |
+
[PROC-0][2024-10-08 17:45:40,200][energy_star][INFO] - + Loading raw dataset
|
22 |
+
[PROC-0][2024-10-08 17:45:41,021][energy_star][INFO] - + Initializing Inference report
|
23 |
+
[PROC-0][2024-10-08 17:45:41,021][energy][INFO] - + Tracking GPU energy on devices [0]
|
24 |
+
[PROC-0][2024-10-08 17:45:45,210][energy_star][INFO] - + Preprocessing dataset
|
25 |
+
[PROC-0][2024-10-08 17:45:45,641][energy][INFO] - + Saving codecarbon emission data to preprocess_codecarbon.json
|
26 |
+
[PROC-0][2024-10-08 17:45:45,641][energy_star][INFO] - + Preparing backend for Inference
|
27 |
+
[PROC-0][2024-10-08 17:45:45,641][energy_star][INFO] - + Initialising dataloader
|
28 |
+
[PROC-0][2024-10-08 17:45:45,642][energy_star][INFO] - + Warming up backend for Inference
|
29 |
+
[PROC-0][2024-10-08 17:45:46,296][energy_star][INFO] - + Running Inference energy tracking for 10 iterations
|
30 |
+
[PROC-0][2024-10-08 17:45:46,297][energy_star][INFO] - + Iteration 1/10
|
31 |
+
[PROC-0][2024-10-08 17:45:50,451][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
32 |
+
[PROC-0][2024-10-08 17:45:50,452][energy_star][INFO] - + Iteration 2/10
|
33 |
+
[PROC-0][2024-10-08 17:45:54,513][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
34 |
+
[PROC-0][2024-10-08 17:45:54,513][energy_star][INFO] - + Iteration 3/10
|
35 |
+
[PROC-0][2024-10-08 17:45:58,591][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
36 |
+
[PROC-0][2024-10-08 17:45:58,591][energy_star][INFO] - + Iteration 4/10
|
37 |
+
[PROC-0][2024-10-08 17:46:02,664][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
38 |
+
[PROC-0][2024-10-08 17:46:02,665][energy_star][INFO] - + Iteration 5/10
|
39 |
+
[PROC-0][2024-10-08 17:46:06,740][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
40 |
+
[PROC-0][2024-10-08 17:46:06,740][energy_star][INFO] - + Iteration 6/10
|
41 |
+
[PROC-0][2024-10-08 17:46:10,818][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
42 |
+
[PROC-0][2024-10-08 17:46:10,818][energy_star][INFO] - + Iteration 7/10
|
43 |
+
[PROC-0][2024-10-08 17:46:14,938][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
44 |
+
[PROC-0][2024-10-08 17:46:14,938][energy_star][INFO] - + Iteration 8/10
|
45 |
+
[PROC-0][2024-10-08 17:46:19,043][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
46 |
+
[PROC-0][2024-10-08 17:46:19,044][energy_star][INFO] - + Iteration 9/10
|
47 |
+
[PROC-0][2024-10-08 17:46:23,134][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
48 |
+
[PROC-0][2024-10-08 17:46:23,135][energy_star][INFO] - + Iteration 10/10
|
49 |
+
[PROC-0][2024-10-08 17:46:27,192][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
50 |
+
[PROC-0][2024-10-08 17:46:27,193][energy][INFO] - + forward energy consumption:
|
51 |
+
[PROC-0][2024-10-08 17:46:27,193][energy][INFO] - + CPU: 0.000043 (kWh)
|
52 |
+
[PROC-0][2024-10-08 17:46:27,193][energy][INFO] - + GPU: 0.000165 (kWh)
|
53 |
+
[PROC-0][2024-10-08 17:46:27,193][energy][INFO] - + RAM: 0.000000 (kWh)
|
54 |
+
[PROC-0][2024-10-08 17:46:27,193][energy][INFO] - + total: 0.000209 (kWh)
|
55 |
+
[PROC-0][2024-10-08 17:46:27,193][energy][INFO] - + forward_iteration_1 energy consumption:
|
56 |
+
[PROC-0][2024-10-08 17:46:27,194][energy][INFO] - + CPU: 0.000049 (kWh)
|
57 |
+
[PROC-0][2024-10-08 17:46:27,194][energy][INFO] - + GPU: 0.000179 (kWh)
|
58 |
+
[PROC-0][2024-10-08 17:46:27,194][energy][INFO] - + RAM: 0.000000 (kWh)
|
59 |
+
[PROC-0][2024-10-08 17:46:27,194][energy][INFO] - + total: 0.000228 (kWh)
|
60 |
+
[PROC-0][2024-10-08 17:46:27,194][energy][INFO] - + forward_iteration_2 energy consumption:
|
61 |
+
[PROC-0][2024-10-08 17:46:27,194][energy][INFO] - + CPU: 0.000048 (kWh)
|
62 |
+
[PROC-0][2024-10-08 17:46:27,194][energy][INFO] - + GPU: 0.000183 (kWh)
|
63 |
+
[PROC-0][2024-10-08 17:46:27,194][energy][INFO] - + RAM: 0.000000 (kWh)
|
64 |
+
[PROC-0][2024-10-08 17:46:27,194][energy][INFO] - + total: 0.000231 (kWh)
|
65 |
+
[PROC-0][2024-10-08 17:46:27,194][energy][INFO] - + forward_iteration_3 energy consumption:
|
66 |
+
[PROC-0][2024-10-08 17:46:27,194][energy][INFO] - + CPU: 0.000048 (kWh)
|
67 |
+
[PROC-0][2024-10-08 17:46:27,194][energy][INFO] - + GPU: 0.000183 (kWh)
|
68 |
+
[PROC-0][2024-10-08 17:46:27,195][energy][INFO] - + RAM: 0.000000 (kWh)
|
69 |
+
[PROC-0][2024-10-08 17:46:27,195][energy][INFO] - + total: 0.000232 (kWh)
|
70 |
+
[PROC-0][2024-10-08 17:46:27,195][energy][INFO] - + forward_iteration_4 energy consumption:
|
71 |
+
[PROC-0][2024-10-08 17:46:27,195][energy][INFO] - + CPU: 0.000048 (kWh)
|
72 |
+
[PROC-0][2024-10-08 17:46:27,195][energy][INFO] - + GPU: 0.000184 (kWh)
|
73 |
+
[PROC-0][2024-10-08 17:46:27,195][energy][INFO] - + RAM: 0.000000 (kWh)
|
74 |
+
[PROC-0][2024-10-08 17:46:27,195][energy][INFO] - + total: 0.000232 (kWh)
|
75 |
+
[PROC-0][2024-10-08 17:46:27,195][energy][INFO] - + forward_iteration_5 energy consumption:
|
76 |
+
[PROC-0][2024-10-08 17:46:27,195][energy][INFO] - + CPU: 0.000048 (kWh)
|
77 |
+
[PROC-0][2024-10-08 17:46:27,195][energy][INFO] - + GPU: 0.000179 (kWh)
|
78 |
+
[PROC-0][2024-10-08 17:46:27,195][energy][INFO] - + RAM: 0.000000 (kWh)
|
79 |
+
[PROC-0][2024-10-08 17:46:27,195][energy][INFO] - + total: 0.000228 (kWh)
|
80 |
+
[PROC-0][2024-10-08 17:46:27,196][energy][INFO] - + forward_iteration_6 energy consumption:
|
81 |
+
[PROC-0][2024-10-08 17:46:27,196][energy][INFO] - + CPU: 0.000048 (kWh)
|
82 |
+
[PROC-0][2024-10-08 17:46:27,196][energy][INFO] - + GPU: 0.000186 (kWh)
|
83 |
+
[PROC-0][2024-10-08 17:46:27,196][energy][INFO] - + RAM: 0.000000 (kWh)
|
84 |
+
[PROC-0][2024-10-08 17:46:27,196][energy][INFO] - + total: 0.000235 (kWh)
|
85 |
+
[PROC-0][2024-10-08 17:46:27,196][energy][INFO] - + forward_iteration_7 energy consumption:
|
86 |
+
[PROC-0][2024-10-08 17:46:27,196][energy][INFO] - + CPU: 0.000000 (kWh)
|
87 |
+
[PROC-0][2024-10-08 17:46:27,196][energy][INFO] - + GPU: 0.000000 (kWh)
|
88 |
+
[PROC-0][2024-10-08 17:46:27,196][energy][INFO] - + RAM: 0.000000 (kWh)
|
89 |
+
[PROC-0][2024-10-08 17:46:27,196][energy][INFO] - + total: 0.000000 (kWh)
|
90 |
+
[PROC-0][2024-10-08 17:46:27,196][energy][INFO] - + forward_iteration_8 energy consumption:
|
91 |
+
[PROC-0][2024-10-08 17:46:27,196][energy][INFO] - + CPU: 0.000048 (kWh)
|
92 |
+
[PROC-0][2024-10-08 17:46:27,196][energy][INFO] - + GPU: 0.000187 (kWh)
|
93 |
+
[PROC-0][2024-10-08 17:46:27,197][energy][INFO] - + RAM: 0.000000 (kWh)
|
94 |
+
[PROC-0][2024-10-08 17:46:27,197][energy][INFO] - + total: 0.000236 (kWh)
|
95 |
+
[PROC-0][2024-10-08 17:46:27,197][energy][INFO] - + forward_iteration_9 energy consumption:
|
96 |
+
[PROC-0][2024-10-08 17:46:27,197][energy][INFO] - + CPU: 0.000048 (kWh)
|
97 |
+
[PROC-0][2024-10-08 17:46:27,197][energy][INFO] - + GPU: 0.000183 (kWh)
|
98 |
+
[PROC-0][2024-10-08 17:46:27,197][energy][INFO] - + RAM: 0.000000 (kWh)
|
99 |
+
[PROC-0][2024-10-08 17:46:27,197][energy][INFO] - + total: 0.000232 (kWh)
|
100 |
+
[PROC-0][2024-10-08 17:46:27,197][energy][INFO] - + forward_iteration_10 energy consumption:
|
101 |
+
[PROC-0][2024-10-08 17:46:27,197][energy][INFO] - + CPU: 0.000048 (kWh)
|
102 |
+
[PROC-0][2024-10-08 17:46:27,197][energy][INFO] - + GPU: 0.000190 (kWh)
|
103 |
+
[PROC-0][2024-10-08 17:46:27,197][energy][INFO] - + RAM: 0.000000 (kWh)
|
104 |
+
[PROC-0][2024-10-08 17:46:27,197][energy][INFO] - + total: 0.000238 (kWh)
|
105 |
+
[PROC-0][2024-10-08 17:46:27,198][energy][INFO] - + preprocess energy consumption:
|
106 |
+
[PROC-0][2024-10-08 17:46:27,198][energy][INFO] - + CPU: 0.000005 (kWh)
|
107 |
+
[PROC-0][2024-10-08 17:46:27,198][energy][INFO] - + GPU: 0.000007 (kWh)
|
108 |
+
[PROC-0][2024-10-08 17:46:27,198][energy][INFO] - + RAM: 0.000000 (kWh)
|
109 |
+
[PROC-0][2024-10-08 17:46:27,198][energy][INFO] - + total: 0.000013 (kWh)
|
110 |
+
[PROC-0][2024-10-08 17:46:27,198][energy][INFO] - + forward energy efficiency: 4780725.993208 (samples/kWh)
|
111 |
+
[PROC-0][2024-10-08 17:46:27,198][energy][INFO] - + preprocess energy efficiency: 79368677.215899 (samples/kWh)
|
112 |
+
[2024-10-08 17:46:27,808][device-isolation][INFO] - + Closing device(s) isolation process...
|
113 |
+
[2024-10-08 17:46:27,861][datasets][INFO] - PyTorch version 2.4.0 available.
|
runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-45-32/error.log
ADDED
@@ -0,0 +1,178 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
0 |
0%| | 0/1000 [00:00<?, ?it/s]
|
1 |
2%|▏ | 24/1000 [00:00<00:04, 232.13it/s]
|
2 |
5%|▍ | 48/1000 [00:00<00:04, 232.59it/s]
|
3 |
7%|▋ | 72/1000 [00:00<00:03, 235.05it/s]
|
4 |
10%|▉ | 96/1000 [00:00<00:03, 235.41it/s]
|
5 |
12%|█▏ | 120/1000 [00:00<00:03, 236.18it/s]
|
6 |
14%|█▍ | 144/1000 [00:00<00:03, 236.04it/s]
|
7 |
17%|█▋ | 169/1000 [00:00<00:03, 238.43it/s]
|
8 |
19%|█▉ | 194/1000 [00:00<00:03, 240.36it/s]
|
9 |
22%|██▏ | 219/1000 [00:00<00:03, 242.30it/s]
|
10 |
24%|██▍ | 244/1000 [00:01<00:03, 243.30it/s]
|
11 |
27%|██▋ | 269/1000 [00:01<00:03, 239.03it/s]
|
12 |
29%|██▉ | 294/1000 [00:01<00:02, 240.25it/s]
|
13 |
32%|███▏ | 319/1000 [00:01<00:02, 240.93it/s]
|
14 |
34%|███▍ | 345/1000 [00:01<00:02, 244.95it/s]
|
15 |
37%|███▋ | 370/1000 [00:01<00:02, 245.92it/s]
|
16 |
40%|███▉ | 395/1000 [00:01<00:02, 242.42it/s]
|
17 |
42%|████▏ | 420/1000 [00:01<00:02, 240.53it/s]
|
18 |
44%|████▍ | 445/1000 [00:01<00:02, 240.04it/s]
|
19 |
47%|████▋ | 470/1000 [00:01<00:02, 238.89it/s]
|
20 |
49%|████▉ | 494/1000 [00:02<00:02, 238.23it/s]
|
21 |
52%|█████▏ | 519/1000 [00:02<00:02, 238.99it/s]
|
22 |
54%|█████▍ | 543/1000 [00:02<00:01, 238.73it/s]
|
23 |
57%|█████▋ | 567/1000 [00:02<00:01, 238.93it/s]
|
24 |
59%|█████▉ | 592/1000 [00:02<00:01, 240.02it/s]
|
25 |
62%|██████▏ | 617/1000 [00:02<00:01, 239.81it/s]
|
26 |
64%|██████▍ | 641/1000 [00:02<00:01, 238.70it/s]
|
27 |
67%|██████▋ | 666/1000 [00:02<00:01, 239.52it/s]
|
28 |
69%|██████▉ | 691/1000 [00:02<00:01, 240.10it/s]
|
29 |
72%|███████▏ | 716/1000 [00:02<00:01, 238.09it/s]
|
30 |
74%|███████▍ | 740/1000 [00:03<00:01, 237.97it/s]
|
31 |
76%|███████▋ | 764/1000 [00:03<00:00, 237.28it/s]
|
32 |
79%|███████▉ | 789/1000 [00:03<00:00, 240.15it/s]
|
33 |
81%|████████▏ | 814/1000 [00:03<00:00, 239.66it/s]
|
34 |
84%|████████▍ | 839/1000 [00:03<00:00, 240.92it/s]
|
35 |
86%|████████▋ | 864/1000 [00:03<00:00, 241.84it/s]
|
36 |
89%|████████▉ | 890/1000 [00:03<00:00, 245.94it/s]
|
37 |
92%|█████████▏| 915/1000 [00:03<00:00, 245.73it/s]
|
38 |
94%|█████████▍| 941/1000 [00:03<00:00, 246.65it/s]
|
39 |
97%|█████████▋| 967/1000 [00:04<00:00, 248.33it/s]
|
40 |
99%|█████████▉| 993/1000 [00:04<00:00, 249.41it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
0%| | 0/1000 [00:00<?, ?it/s]
|
42 |
2%|▎ | 25/1000 [00:00<00:04, 240.66it/s]
|
43 |
5%|▌ | 50/1000 [00:00<00:03, 240.67it/s]
|
44 |
8%|▊ | 75/1000 [00:00<00:03, 239.59it/s]
|
45 |
10%|█ | 100/1000 [00:00<00:03, 239.40it/s]
|
46 |
13%|█▎ | 126/1000 [00:00<00:03, 244.69it/s]
|
47 |
15%|█▌ | 151/1000 [00:00<00:03, 244.80it/s]
|
48 |
18%|█▊ | 177/1000 [00:00<00:03, 248.28it/s]
|
49 |
20%|██ | 202/1000 [00:00<00:03, 247.58it/s]
|
50 |
23%|██▎ | 228/1000 [00:00<00:03, 249.63it/s]
|
51 |
25%|██▌ | 253/1000 [00:01<00:03, 245.54it/s]
|
52 |
28%|██▊ | 279/1000 [00:01<00:02, 247.39it/s]
|
53 |
30%|███ | 304/1000 [00:01<00:02, 246.88it/s]
|
54 |
33%|███▎ | 329/1000 [00:01<00:02, 246.05it/s]
|
55 |
35%|███▌ | 354/1000 [00:01<00:02, 246.09it/s]
|
56 |
38%|███▊ | 380/1000 [00:01<00:02, 246.70it/s]
|
57 |
40%|████ | 405/1000 [00:01<00:02, 244.90it/s]
|
58 |
43%|████▎ | 430/1000 [00:01<00:02, 245.35it/s]
|
59 |
46%|████▌ | 455/1000 [00:01<00:02, 245.24it/s]
|
60 |
48%|████▊ | 481/1000 [00:01<00:02, 248.20it/s]
|
61 |
51%|█████ | 506/1000 [00:02<00:01, 247.49it/s]
|
62 |
53%|█████▎ | 531/1000 [00:02<00:01, 247.64it/s]
|
63 |
56%|█████▌ | 556/1000 [00:02<00:01, 246.43it/s]
|
64 |
58%|█████▊ | 581/1000 [00:02<00:01, 245.78it/s]
|
65 |
61%|██████ | 606/1000 [00:02<00:01, 245.25it/s]
|
66 |
63%|██████▎ | 631/1000 [00:02<00:01, 246.63it/s]
|
67 |
66%|██████▌ | 656/1000 [00:02<00:01, 246.66it/s]
|
68 |
68%|██████▊ | 682/1000 [00:02<00:01, 248.39it/s]
|
69 |
71%|███████ | 707/1000 [00:02<00:01, 246.98it/s]
|
70 |
73%|███████▎ | 732/1000 [00:02<00:01, 242.60it/s]
|
71 |
76%|███████▌ | 757/1000 [00:03<00:01, 241.93it/s]
|
72 |
78%|███████▊ | 783/1000 [00:03<00:00, 244.61it/s]
|
73 |
81%|████████ | 808/1000 [00:03<00:00, 245.02it/s]
|
74 |
83%|████████▎ | 834/1000 [00:03<00:00, 246.75it/s]
|
75 |
86%|████████▌ | 859/1000 [00:03<00:00, 247.07it/s]
|
76 |
88%|████████▊ | 885/1000 [00:03<00:00, 249.91it/s]
|
77 |
91%|█████████ | 910/1000 [00:03<00:00, 249.60it/s]
|
78 |
94%|█████████▎| 935/1000 [00:03<00:00, 249.51it/s]
|
79 |
96%|█████████▌| 960/1000 [00:03<00:00, 249.52it/s]
|
80 |
99%|█████████▊| 986/1000 [00:03<00:00, 250.69it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
0%| | 0/1000 [00:00<?, ?it/s]
|
82 |
2%|▎ | 25/1000 [00:00<00:04, 241.64it/s]
|
83 |
5%|▌ | 50/1000 [00:00<00:04, 235.48it/s]
|
84 |
7%|▋ | 74/1000 [00:00<00:03, 234.01it/s]
|
85 |
10%|▉ | 98/1000 [00:00<00:03, 233.69it/s]
|
86 |
12%|█▏ | 123/1000 [00:00<00:03, 236.94it/s]
|
87 |
15%|█▍ | 147/1000 [00:00<00:03, 237.74it/s]
|
88 |
17%|█▋ | 172/1000 [00:00<00:03, 240.12it/s]
|
89 |
20%|█▉ | 197/1000 [00:00<00:03, 240.61it/s]
|
90 |
22%|██▏ | 222/1000 [00:00<00:03, 243.00it/s]
|
91 |
25%|██▍ | 247/1000 [00:01<00:03, 244.76it/s]
|
92 |
27%|██▋ | 272/1000 [00:01<00:02, 243.22it/s]
|
93 |
30%|██▉ | 298/1000 [00:01<00:02, 246.08it/s]
|
94 |
32%|███▏ | 323/1000 [00:01<00:02, 245.21it/s]
|
95 |
35%|███▍ | 348/1000 [00:01<00:02, 245.83it/s]
|
96 |
37%|███▋ | 373/1000 [00:01<00:02, 246.88it/s]
|
97 |
40%|███▉ | 398/1000 [00:01<00:02, 245.89it/s]
|
98 |
42%|████▏ | 423/1000 [00:01<00:02, 246.15it/s]
|
99 |
45%|████▍ | 449/1000 [00:01<00:02, 247.53it/s]
|
100 |
48%|████▊ | 475/1000 [00:01<00:02, 248.64it/s]
|
101 |
50%|█████ | 500/1000 [00:02<00:02, 246.43it/s]
|
102 |
52%|█████▎ | 525/1000 [00:02<00:01, 246.57it/s]
|
103 |
55%|█████▌ | 551/1000 [00:02<00:01, 248.62it/s]
|
104 |
58%|█████▊ | 576/1000 [00:02<00:01, 247.94it/s]
|
105 |
60%|██████ | 601/1000 [00:02<00:01, 245.76it/s]
|
106 |
63%|██████▎ | 626/1000 [00:02<00:01, 246.86it/s]
|
107 |
65%|██████▌ | 651/1000 [00:02<00:01, 246.68it/s]
|
108 |
68%|██████▊ | 677/1000 [00:02<00:01, 248.60it/s]
|
109 |
70%|███████ | 703/1000 [00:02<00:01, 251.55it/s]
|
110 |
73%|███████▎ | 729/1000 [00:02<00:01, 247.28it/s]
|
111 |
75%|███████▌ | 754/1000 [00:03<00:00, 247.97it/s]
|
112 |
78%|███████▊ | 780/1000 [00:03<00:00, 249.72it/s]
|
113 |
80%|████████ | 805/1000 [00:03<00:00, 248.77it/s]
|
114 |
83%|████████▎ | 830/1000 [00:03<00:00, 247.16it/s]
|
115 |
86%|████████▌ | 856/1000 [00:03<00:00, 248.52it/s]
|
116 |
88%|████████▊ | 883/1000 [00:03<00:00, 252.05it/s]
|
117 |
91%|█████████ | 909/1000 [00:03<00:00, 251.10it/s]
|
118 |
94%|█████████▎| 935/1000 [00:03<00:00, 250.73it/s]
|
119 |
96%|█████████▌| 961/1000 [00:03<00:00, 246.75it/s]
|
120 |
99%|█████████▊| 986/1000 [00:04<00:00, 244.94it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
0%| | 0/1000 [00:00<?, ?it/s]
|
122 |
3%|▎ | 26/1000 [00:00<00:03, 251.28it/s]
|
123 |
5%|▌ | 52/1000 [00:00<00:03, 247.56it/s]
|
124 |
8%|▊ | 77/1000 [00:00<00:03, 243.68it/s]
|
125 |
10%|█ | 102/1000 [00:00<00:03, 238.39it/s]
|
126 |
13%|█▎ | 128/1000 [00:00<00:03, 243.64it/s]
|
127 |
15%|█▌ | 153/1000 [00:00<00:03, 241.02it/s]
|
128 |
18%|█▊ | 178/1000 [00:00<00:03, 242.09it/s]
|
129 |
20%|██ | 203/1000 [00:00<00:03, 240.07it/s]
|
130 |
23%|██▎ | 228/1000 [00:00<00:03, 240.56it/s]
|
131 |
25%|██▌ | 253/1000 [00:01<00:03, 237.45it/s]
|
132 |
28%|██▊ | 278/1000 [00:01<00:02, 241.03it/s]
|
133 |
30%|███ | 304/1000 [00:01<00:02, 244.40it/s]
|
134 |
33%|███▎ | 330/1000 [00:01<00:02, 246.88it/s]
|
135 |
36%|███▌ | 356/1000 [00:01<00:02, 250.21it/s]
|
136 |
38%|███▊ | 382/1000 [00:01<00:02, 252.15it/s]
|
137 |
41%|████ | 408/1000 [00:01<00:02, 249.31it/s]
|
138 |
43%|████▎ | 434/1000 [00:01<00:02, 249.27it/s]
|
139 |
46%|████▌ | 460/1000 [00:01<00:02, 248.76it/s]
|
140 |
49%|████▊ | 486/1000 [00:01<00:02, 250.96it/s]
|
141 |
51%|█████ | 512/1000 [00:02<00:01, 248.85it/s]
|
142 |
54%|█████▍ | 538/1000 [00:02<00:01, 249.96it/s]
|
143 |
56%|█████▋ | 564/1000 [00:02<00:01, 249.82it/s]
|
144 |
59%|█████▉ | 589/1000 [00:02<00:01, 247.59it/s]
|
145 |
61%|██████▏ | 614/1000 [00:02<00:01, 247.71it/s]
|
146 |
64%|██████▍ | 639/1000 [00:02<00:01, 246.60it/s]
|
147 |
66%|██████▋ | 664/1000 [00:02<00:01, 247.47it/s]
|
148 |
69%|██████▉ | 690/1000 [00:02<00:01, 248.95it/s]
|
149 |
72%|███████▏ | 715/1000 [00:02<00:01, 247.43it/s]
|
150 |
74%|███████▍ | 740/1000 [00:03<00:01, 246.15it/s]
|
151 |
76%|███████▋ | 765/1000 [00:03<00:00, 243.39it/s]
|
152 |
79%|███████▉ | 790/1000 [00:03<00:00, 244.35it/s]
|
153 |
82%|████████▏ | 815/1000 [00:03<00:00, 242.90it/s]
|
154 |
84%|████████▍ | 840/1000 [00:03<00:00, 243.48it/s]
|
155 |
86%|████████▋ | 865/1000 [00:03<00:00, 242.56it/s]
|
156 |
89%|████████▉ | 890/1000 [00:03<00:00, 243.57it/s]
|
157 |
92%|█████████▏| 915/1000 [00:03<00:00, 243.41it/s]
|
158 |
94%|█████████▍| 941/1000 [00:03<00:00, 245.33it/s]
|
159 |
97%|█████████▋| 967/1000 [00:03<00:00, 247.63it/s]
|
160 |
99%|█████████▉| 993/1000 [00:04<00:00, 248.58it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
0%| | 0/1000 [00:00<?, ?it/s]
|
162 |
2%|▎ | 25/1000 [00:00<00:04, 241.79it/s]
|
163 |
5%|▌ | 50/1000 [00:00<00:03, 243.28it/s]
|
164 |
8%|▊ | 75/1000 [00:00<00:03, 241.90it/s]
|
165 |
10%|█ | 100/1000 [00:00<00:03, 240.57it/s]
|
166 |
12%|█▎ | 125/1000 [00:00<00:03, 241.38it/s]
|
167 |
15%|█▌ | 150/1000 [00:00<00:03, 239.46it/s]
|
168 |
18%|█▊ | 175/1000 [00:00<00:03, 242.47it/s]
|
169 |
20%|██ | 200/1000 [00:00<00:03, 242.57it/s]
|
170 |
23%|██▎ | 226/1000 [00:00<00:03, 245.46it/s]
|
171 |
25%|██▌ | 251/1000 [00:01<00:03, 240.23it/s]
|
172 |
28%|██▊ | 276/1000 [00:01<00:02, 242.47it/s]
|
173 |
30%|███ | 301/1000 [00:01<00:02, 243.27it/s]
|
174 |
33%|███▎ | 326/1000 [00:01<00:02, 243.77it/s]
|
175 |
35%|███▌ | 351/1000 [00:01<00:02, 244.49it/s]
|
176 |
38%|███▊ | 376/1000 [00:01<00:02, 245.40it/s]
|
177 |
40%|████ | 401/1000 [00:01<00:02, 244.55it/s]
|
178 |
43%|████▎ | 426/1000 [00:01<00:02, 241.76it/s]
|
179 |
45%|████▌ | 451/1000 [00:01<00:02, 241.52it/s]
|
180 |
48%|████▊ | 476/1000 [00:01<00:02, 243.79it/s]
|
181 |
50%|█████ | 501/1000 [00:02<00:02, 244.32it/s]
|
182 |
53%|█████▎ | 526/1000 [00:02<00:01, 245.49it/s]
|
183 |
55%|█████▌ | 552/1000 [00:02<00:01, 247.91it/s]
|
184 |
58%|█████▊ | 577/1000 [00:02<00:01, 246.19it/s]
|
185 |
60%|██████ | 602/1000 [00:02<00:01, 245.40it/s]
|
186 |
63%|██████▎ | 627/1000 [00:02<00:01, 246.63it/s]
|
187 |
65%|██████▌ | 652/1000 [00:02<00:01, 247.11it/s]
|
188 |
68%|██████▊ | 678/1000 [00:02<00:01, 248.91it/s]
|
189 |
70%|███████ | 704/1000 [00:02<00:01, 251.36it/s]
|
190 |
73%|███████▎ | 730/1000 [00:02<00:01, 246.82it/s]
|
191 |
76%|███████▌ | 755/1000 [00:03<00:00, 247.49it/s]
|
192 |
78%|███████▊ | 781/1000 [00:03<00:00, 249.28it/s]
|
193 |
81%|████████ | 807/1000 [00:03<00:00, 250.35it/s]
|
194 |
83%|████████▎ | 833/1000 [00:03<00:00, 250.54it/s]
|
195 |
86%|████████▌ | 859/1000 [00:03<00:00, 248.35it/s]
|
196 |
88%|████████▊ | 884/1000 [00:03<00:00, 247.99it/s]
|
197 |
91%|█████████ | 909/1000 [00:03<00:00, 247.29it/s]
|
198 |
93%|█████████▎| 934/1000 [00:03<00:00, 247.60it/s]
|
199 |
96%|█████████▌| 959/1000 [00:03<00:00, 248.03it/s]
|
200 |
98%|█████████▊| 985/1000 [00:04<00:00, 249.35it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
0%| | 0/1000 [00:00<?, ?it/s]
|
202 |
2%|▎ | 25/1000 [00:00<00:04, 241.41it/s]
|
203 |
5%|▌ | 50/1000 [00:00<00:03, 238.51it/s]
|
204 |
7%|▋ | 74/1000 [00:00<00:03, 235.88it/s]
|
205 |
10%|▉ | 98/1000 [00:00<00:03, 235.07it/s]
|
206 |
12%|█▏ | 123/1000 [00:00<00:03, 240.11it/s]
|
207 |
15%|█▍ | 148/1000 [00:00<00:03, 241.07it/s]
|
208 |
17%|█▋ | 174/1000 [00:00<00:03, 245.15it/s]
|
209 |
20%|█▉ | 199/1000 [00:00<00:03, 244.56it/s]
|
210 |
22%|██▎ | 225/1000 [00:00<00:03, 246.82it/s]
|
211 |
25%|██▌ | 250/1000 [00:01<00:03, 244.30it/s]
|
212 |
28%|██▊ | 275/1000 [00:01<00:02, 244.49it/s]
|
213 |
30%|███ | 301/1000 [00:01<00:02, 247.32it/s]
|
214 |
33%|███▎ | 327/1000 [00:01<00:02, 248.43it/s]
|
215 |
35%|███▌ | 353/1000 [00:01<00:02, 250.58it/s]
|
216 |
38%|███▊ | 379/1000 [00:01<00:02, 252.37it/s]
|
217 |
40%|████ | 405/1000 [00:01<00:02, 248.97it/s]
|
218 |
43%|████▎ | 430/1000 [00:01<00:02, 248.24it/s]
|
219 |
46%|████▌ | 455/1000 [00:01<00:02, 247.54it/s]
|
220 |
48%|████▊ | 481/1000 [00:01<00:02, 249.19it/s]
|
221 |
51%|█████ | 506/1000 [00:02<00:01, 248.17it/s]
|
222 |
53%|█████▎ | 531/1000 [00:02<00:01, 248.07it/s]
|
223 |
56%|█████▌ | 557/1000 [00:02<00:01, 248.49it/s]
|
224 |
58%|█████▊ | 582/1000 [00:02<00:01, 247.83it/s]
|
225 |
61%|██████ | 607/1000 [00:02<00:01, 246.49it/s]
|
226 |
63%|██████▎ | 632/1000 [00:02<00:01, 246.93it/s]
|
227 |
66%|██████▌ | 657/1000 [00:02<00:01, 246.65it/s]
|
228 |
68%|██████▊ | 683/1000 [00:02<00:01, 248.23it/s]
|
229 |
71%|███████ | 708/1000 [00:02<00:01, 245.89it/s]
|
230 |
73%|███████▎ | 733/1000 [00:02<00:01, 240.08it/s]
|
231 |
76%|███████▌ | 758/1000 [00:03<00:01, 241.27it/s]
|
232 |
78%|███████▊ | 784/1000 [00:03<00:00, 245.02it/s]
|
233 |
81%|████████ | 809/1000 [00:03<00:00, 245.98it/s]
|
234 |
84%|████████▎ | 835/1000 [00:03<00:00, 248.51it/s]
|
235 |
86%|████████▌ | 860/1000 [00:03<00:00, 248.59it/s]
|
236 |
89%|████████▊ | 886/1000 [00:03<00:00, 249.74it/s]
|
237 |
91%|█████████ | 911/1000 [00:03<00:00, 246.61it/s]
|
238 |
94%|█████████▎| 936/1000 [00:03<00:00, 244.80it/s]
|
239 |
96%|█████████▌| 961/1000 [00:03<00:00, 244.95it/s]
|
240 |
99%|█████████▊| 986/1000 [00:04<00:00, 244.06it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
0%| | 0/1000 [00:00<?, ?it/s]
|
242 |
2%|▎ | 25/1000 [00:00<00:04, 242.97it/s]
|
243 |
5%|▌ | 50/1000 [00:00<00:03, 243.94it/s]
|
244 |
8%|▊ | 75/1000 [00:00<00:03, 242.51it/s]
|
245 |
10%|█ | 100/1000 [00:00<00:03, 240.77it/s]
|
246 |
13%|█▎ | 126/1000 [00:00<00:03, 244.94it/s]
|
247 |
15%|█▌ | 151/1000 [00:00<00:03, 244.00it/s]
|
248 |
18%|█▊ | 176/1000 [00:00<00:03, 243.08it/s]
|
249 |
20%|██ | 201/1000 [00:00<00:03, 240.70it/s]
|
250 |
23%|██▎ | 226/1000 [00:00<00:03, 243.03it/s]
|
251 |
25%|██▌ | 251/1000 [00:01<00:03, 239.86it/s]
|
252 |
28%|██▊ | 276/1000 [00:01<00:02, 241.49it/s]
|
253 |
30%|███ | 301/1000 [00:01<00:02, 242.37it/s]
|
254 |
33%|███▎ | 327/1000 [00:01<00:02, 245.13it/s]
|
255 |
35%|███▌ | 353/1000 [00:01<00:02, 247.82it/s]
|
256 |
38%|███▊ | 378/1000 [00:01<00:02, 247.14it/s]
|
257 |
40%|████ | 403/1000 [00:01<00:02, 243.34it/s]
|
258 |
43%|████▎ | 428/1000 [00:01<00:02, 241.13it/s]
|
259 |
45%|████▌ | 453/1000 [00:01<00:02, 240.30it/s]
|
260 |
48%|████▊ | 478/1000 [00:01<00:02, 240.76it/s]
|
261 |
50%|█████ | 503/1000 [00:02<00:02, 241.71it/s]
|
262 |
53%|█████▎ | 528/1000 [00:02<00:01, 243.35it/s]
|
263 |
55%|█████▌ | 553/1000 [00:02<00:01, 243.98it/s]
|
264 |
58%|█████▊ | 578/1000 [00:02<00:01, 241.18it/s]
|
265 |
60%|██████ | 603/1000 [00:02<00:01, 240.25it/s]
|
266 |
63%|██████▎ | 628/1000 [00:02<00:01, 240.60it/s]
|
267 |
65%|██████▌ | 653/1000 [00:02<00:01, 242.11it/s]
|
268 |
68%|██████▊ | 679/1000 [00:02<00:01, 245.25it/s]
|
269 |
70%|███████ | 705/1000 [00:02<00:01, 247.15it/s]
|
270 |
73%|███████▎ | 730/1000 [00:03<00:01, 243.17it/s]
|
271 |
76%|███████▌ | 755/1000 [00:03<00:01, 243.60it/s]
|
272 |
78%|███████▊ | 780/1000 [00:03<00:00, 244.86it/s]
|
273 |
80%|████████ | 805/1000 [00:03<00:00, 244.74it/s]
|
274 |
83%|████████▎ | 830/1000 [00:03<00:00, 243.96it/s]
|
275 |
86%|████████▌ | 855/1000 [00:03<00:00, 244.01it/s]
|
276 |
88%|████████▊ | 880/1000 [00:03<00:00, 244.68it/s]
|
277 |
90%|█████████ | 905/1000 [00:03<00:00, 242.26it/s]
|
278 |
93%|█████████▎| 930/1000 [00:03<00:00, 244.22it/s]
|
279 |
96%|█████████▌| 955/1000 [00:03<00:00, 242.45it/s]
|
280 |
98%|█████████▊| 980/1000 [00:04<00:00, 242.90it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
0%| | 0/1000 [00:00<?, ?it/s]
|
282 |
2%|▎ | 25/1000 [00:00<00:04, 242.48it/s]
|
283 |
5%|▌ | 50/1000 [00:00<00:03, 239.33it/s]
|
284 |
7%|▋ | 74/1000 [00:00<00:03, 237.08it/s]
|
285 |
10%|▉ | 98/1000 [00:00<00:03, 235.84it/s]
|
286 |
12%|█▏ | 122/1000 [00:00<00:03, 237.12it/s]
|
287 |
15%|█▍ | 146/1000 [00:00<00:03, 237.68it/s]
|
288 |
17%|█▋ | 171/1000 [00:00<00:03, 240.50it/s]
|
289 |
20%|█▉ | 196/1000 [00:00<00:03, 240.96it/s]
|
290 |
22%|██▏ | 221/1000 [00:00<00:03, 242.64it/s]
|
291 |
25%|██▍ | 246/1000 [00:01<00:03, 243.62it/s]
|
292 |
27%|██▋ | 271/1000 [00:01<00:03, 240.19it/s]
|
293 |
30%|██▉ | 296/1000 [00:01<00:02, 240.15it/s]
|
294 |
32%|███▏ | 321/1000 [00:01<00:02, 240.02it/s]
|
295 |
35%|███▍ | 346/1000 [00:01<00:02, 241.38it/s]
|
296 |
37%|███▋ | 371/1000 [00:01<00:02, 240.49it/s]
|
297 |
40%|███▉ | 396/1000 [00:01<00:02, 238.33it/s]
|
298 |
42%|████▏ | 420/1000 [00:01<00:02, 237.94it/s]
|
299 |
44%|████▍ | 444/1000 [00:01<00:02, 238.15it/s]
|
300 |
47%|████▋ | 468/1000 [00:01<00:02, 237.06it/s]
|
301 |
49%|████▉ | 492/1000 [00:02<00:02, 236.40it/s]
|
302 |
52%|█████▏ | 518/1000 [00:02<00:01, 241.32it/s]
|
303 |
54%|█████▍ | 543/1000 [00:02<00:01, 243.11it/s]
|
304 |
57%|█████▋ | 569/1000 [00:02<00:01, 245.52it/s]
|
305 |
59%|█████▉ | 594/1000 [00:02<00:01, 244.38it/s]
|
306 |
62%|██████▏ | 620/1000 [00:02<00:01, 246.77it/s]
|
307 |
64%|██████▍ | 645/1000 [00:02<00:01, 245.72it/s]
|
308 |
67%|██████▋ | 670/1000 [00:02<00:01, 246.88it/s]
|
309 |
70%|██████▉ | 696/1000 [00:02<00:01, 248.13it/s]
|
310 |
72%|██���████▏ | 721/1000 [00:02<00:01, 244.74it/s]
|
311 |
75%|███████▍ | 746/1000 [00:03<00:01, 245.19it/s]
|
312 |
77%|███████▋ | 772/1000 [00:03<00:00, 248.41it/s]
|
313 |
80%|███████▉ | 798/1000 [00:03<00:00, 250.98it/s]
|
314 |
82%|████████▏ | 824/1000 [00:03<00:00, 249.92it/s]
|
315 |
85%|████████▍ | 849/1000 [00:03<00:00, 249.85it/s]
|
316 |
88%|████████▊ | 875/1000 [00:03<00:00, 250.34it/s]
|
317 |
90%|█████████ | 901/1000 [00:03<00:00, 248.70it/s]
|
318 |
93%|█████████▎| 927/1000 [00:03<00:00, 250.07it/s]
|
319 |
95%|█████████▌| 953/1000 [00:03<00:00, 248.78it/s]
|
320 |
98%|█████████▊| 979/1000 [00:04<00:00, 249.79it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
321 |
0%| | 0/1000 [00:00<?, ?it/s]
|
322 |
3%|▎ | 26/1000 [00:00<00:03, 250.87it/s]
|
323 |
5%|▌ | 52/1000 [00:00<00:03, 246.71it/s]
|
324 |
8%|▊ | 77/1000 [00:00<00:03, 243.71it/s]
|
325 |
10%|█ | 102/1000 [00:00<00:03, 240.40it/s]
|
326 |
13%|█▎ | 128/1000 [00:00<00:03, 245.00it/s]
|
327 |
15%|█▌ | 153/1000 [00:00<00:03, 243.48it/s]
|
328 |
18%|█▊ | 178/1000 [00:00<00:03, 243.71it/s]
|
329 |
20%|██ | 203/1000 [00:00<00:03, 240.46it/s]
|
330 |
23%|██▎ | 228/1000 [00:00<00:03, 241.44it/s]
|
331 |
25%|██▌ | 253/1000 [00:01<00:03, 239.57it/s]
|
332 |
28%|██▊ | 278/1000 [00:01<00:02, 242.32it/s]
|
333 |
30%|███ | 304/1000 [00:01<00:02, 245.69it/s]
|
334 |
33%|███▎ | 330/1000 [00:01<00:02, 247.52it/s]
|
335 |
36%|███▌ | 356/1000 [00:01<00:02, 250.07it/s]
|
336 |
38%|███▊ | 382/1000 [00:01<00:02, 248.92it/s]
|
337 |
41%|████ | 407/1000 [00:01<00:02, 241.13it/s]
|
338 |
43%|████▎ | 432/1000 [00:01<00:02, 240.00it/s]
|
339 |
46%|████▌ | 457/1000 [00:01<00:02, 238.42it/s]
|
340 |
48%|████▊ | 482/1000 [00:01<00:02, 239.08it/s]
|
341 |
51%|█████ | 506/1000 [00:02<00:02, 237.65it/s]
|
342 |
53%|█████▎ | 530/1000 [00:02<00:01, 235.94it/s]
|
343 |
56%|█████▌ | 555/1000 [00:02<00:01, 237.72it/s]
|
344 |
58%|█████▊ | 580/1000 [00:02<00:01, 238.88it/s]
|
345 |
60%|██████ | 605/1000 [00:02<00:01, 240.42it/s]
|
346 |
63%|██████▎ | 630/1000 [00:02<00:01, 242.91it/s]
|
347 |
66%|██████▌ | 655/1000 [00:02<00:01, 243.67it/s]
|
348 |
68%|██████▊ | 681/1000 [00:02<00:01, 245.77it/s]
|
349 |
71%|███████ | 707/1000 [00:02<00:01, 247.40it/s]
|
350 |
73%|███████▎ | 732/1000 [00:03<00:01, 245.20it/s]
|
351 |
76%|███████▌ | 757/1000 [00:03<00:00, 246.21it/s]
|
352 |
78%|███████▊ | 783/1000 [00:03<00:00, 248.07it/s]
|
353 |
81%|████████ | 809/1000 [00:03<00:00, 248.02it/s]
|
354 |
84%|████████▎ | 835/1000 [00:03<00:00, 249.71it/s]
|
355 |
86%|████████▌ | 860/1000 [00:03<00:00, 249.26it/s]
|
356 |
89%|████████▊ | 886/1000 [00:03<00:00, 251.46it/s]
|
357 |
91%|█████████ | 912/1000 [00:03<00:00, 250.35it/s]
|
358 |
94%|█████████▍| 938/1000 [00:03<00:00, 250.01it/s]
|
359 |
96%|█████████▋| 964/1000 [00:03<00:00, 249.92it/s]
|
360 |
99%|█████████▉| 990/1000 [00:04<00:00, 251.35it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
361 |
0%| | 0/1000 [00:00<?, ?it/s]
|
362 |
2%|▎ | 25/1000 [00:00<00:03, 249.79it/s]
|
363 |
5%|▌ | 50/1000 [00:00<00:03, 246.48it/s]
|
364 |
8%|▊ | 75/1000 [00:00<00:03, 243.56it/s]
|
365 |
10%|█ | 100/1000 [00:00<00:03, 241.17it/s]
|
366 |
13%|█▎ | 126/1000 [00:00<00:03, 244.96it/s]
|
367 |
15%|█▌ | 151/1000 [00:00<00:03, 244.31it/s]
|
368 |
18%|█▊ | 177/1000 [00:00<00:03, 247.21it/s]
|
369 |
20%|██ | 202/1000 [00:00<00:03, 246.14it/s]
|
370 |
23%|██▎ | 228/1000 [00:00<00:03, 248.10it/s]
|
371 |
25%|██▌ | 253/1000 [00:01<00:03, 243.95it/s]
|
372 |
28%|██▊ | 278/1000 [00:01<00:02, 245.27it/s]
|
373 |
30%|███ | 303/1000 [00:01<00:02, 245.83it/s]
|
374 |
33%|███▎ | 328/1000 [00:01<00:02, 243.98it/s]
|
375 |
35%|███▌ | 353/1000 [00:01<00:02, 243.81it/s]
|
376 |
38%|███▊ | 379/1000 [00:01<00:02, 246.46it/s]
|
377 |
40%|████ | 404/1000 [00:01<00:02, 244.75it/s]
|
378 |
43%|████▎ | 429/1000 [00:01<00:02, 245.19it/s]
|
379 |
45%|████▌ | 454/1000 [00:01<00:02, 245.94it/s]
|
380 |
48%|████▊ | 480/1000 [00:01<00:02, 247.51it/s]
|
381 |
50%|█████ | 505/1000 [00:02<00:02, 246.57it/s]
|
382 |
53%|█████▎ | 530/1000 [00:02<00:01, 246.81it/s]
|
383 |
56%|█████▌ | 555/1000 [00:02<00:01, 246.12it/s]
|
384 |
58%|█████▊ | 580/1000 [00:02<00:01, 243.75it/s]
|
385 |
60%|██████ | 605/1000 [00:02<00:01, 243.86it/s]
|
386 |
63%|██████▎ | 630/1000 [00:02<00:01, 245.55it/s]
|
387 |
66%|██████▌ | 655/1000 [00:02<00:01, 245.75it/s]
|
388 |
68%|██████▊ | 681/1000 [00:02<00:01, 247.53it/s]
|
389 |
71%|███████ | 707/1000 [00:02<00:01, 248.50it/s]
|
390 |
73%|███████▎ | 732/1000 [00:02<00:01, 246.39it/s]
|
391 |
76%|███████▌ | 757/1000 [00:03<00:00, 247.09it/s]
|
392 |
78%|███████▊ | 783/1000 [00:03<00:00, 248.81it/s]
|
393 |
81%|████████ | 809/1000 [00:03<00:00, 248.84it/s]
|
394 |
84%|████████▎ | 835/1000 [00:03<00:00, 250.40it/s]
|
395 |
86%|████████▌ | 861/1000 [00:03<00:00, 249.98it/s]
|
396 |
89%|████████▊ | 887/1000 [00:03<00:00, 251.97it/s]
|
397 |
91%|█████████▏| 913/1000 [00:03<00:00, 250.84it/s]
|
398 |
94%|█████████▍| 939/1000 [00:03<00:00, 250.50it/s]
|
399 |
96%|█████████▋| 965/1000 [00:03<00:00, 250.05it/s]
|
400 |
99%|█████████▉| 991/1000 [00:04<00:00, 251.03it/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:45:41] [setup] RAM Tracking...
|
11 |
+
[codecarbon INFO @ 17:45:41] [setup] GPU Tracking...
|
12 |
+
[codecarbon INFO @ 17:45:41] Tracking Nvidia GPU via pynvml
|
13 |
+
[codecarbon DEBUG @ 17:45:41] GPU available. Starting setup
|
14 |
+
[codecarbon INFO @ 17:45:41] [setup] CPU Tracking...
|
15 |
+
[codecarbon DEBUG @ 17:45:41] Not using PowerGadget, an exception occurred while instantiating IntelPowerGadget : Platform not supported by Intel Power Gadget
|
16 |
+
[codecarbon DEBUG @ 17:45:41] 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:45:41] Not using PowerMetrics, an exception occurred while instantiating Powermetrics : Platform not supported by Powermetrics
|
18 |
+
[codecarbon WARNING @ 17:45:41] No CPU tracking mode found. Falling back on CPU constant mode.
|
19 |
+
[codecarbon WARNING @ 17:45:42] We saw that you have a AMD EPYC 7R32 but we don't know it. Please contact us.
|
20 |
+
[codecarbon INFO @ 17:45:42] CPU Model on constant consumption mode: AMD EPYC 7R32
|
21 |
+
[codecarbon INFO @ 17:45:42] >>> Tracker's metadata:
|
22 |
+
[codecarbon INFO @ 17:45:42] Platform system: Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35
|
23 |
+
[codecarbon INFO @ 17:45:42] Python version: 3.9.20
|
24 |
+
[codecarbon INFO @ 17:45:42] CodeCarbon version: 2.5.1
|
25 |
+
[codecarbon INFO @ 17:45:42] Available RAM : 186.705 GB
|
26 |
+
[codecarbon INFO @ 17:45:42] CPU count: 48
|
27 |
+
[codecarbon INFO @ 17:45:42] CPU model: AMD EPYC 7R32
|
28 |
+
[codecarbon INFO @ 17:45:42] GPU count: 1
|
29 |
+
[codecarbon INFO @ 17:45:42] GPU model: 1 x NVIDIA A10G
|
30 |
+
[codecarbon DEBUG @ 17:45:43] Not running on AWS
|
31 |
+
[codecarbon DEBUG @ 17:45:44] Not running on Azure
|
32 |
+
[codecarbon DEBUG @ 17:45:45] Not running on GCP
|
33 |
+
[codecarbon INFO @ 17:45:45] Saving emissions data to file /runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-45-32/codecarbon.csv
|
34 |
+
[codecarbon DEBUG @ 17:45:45] EmissionsData(timestamp='2024-10-08T17:45:45', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=0.0022155020851641893, 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:45:45] Energy consumed for RAM : 0.000000 kWh. RAM Power : 0.27120494842529297 W
|
38 |
+
[codecarbon DEBUG @ 17:45:45] RAM : 0.27 W during 0.43 s [measurement time: 0.0005]
|
39 |
+
[codecarbon INFO @ 17:45:45] Energy consumed for all GPUs : 0.000007 kWh. Total GPU Power : 63.0373229769635 W
|
40 |
+
[codecarbon DEBUG @ 17:45:45] GPU : 63.04 W during 0.43 s [measurement time: 0.0023]
|
41 |
+
[codecarbon INFO @ 17:45:45] Energy consumed for all CPUs : 0.000005 kWh. Total CPU Power : 42.5 W
|
42 |
+
[codecarbon DEBUG @ 17:45:45] CPU : 42.50 W during 0.43 s [measurement time: 0.0000]
|
43 |
+
[codecarbon INFO @ 17:45:45] 0.000013 kWh of electricity used since the beginning.
|
44 |
+
[codecarbon DEBUG @ 17:45:45] last_duration=0.42695335403550416
|
45 |
+
------------------------
|
46 |
+
[codecarbon DEBUG @ 17:45:45] EmissionsData(timestamp='2024-10-08T17:45:45', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=0.43018033809494227, emissions=4.650882323345498e-06, emissions_rate=1.0811471170304934e-05, cpu_power=42.5, gpu_power=63.0373229769635, ram_power=0.27120494842529297, cpu_energy=5.077258202800295e-06, gpu_energy=7.4900059923166395e-06, ram_energy=3.216463597966938e-08, energy_consumed=1.2599428831096603e-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:45:46] EmissionsData(timestamp='2024-10-08T17:45:46', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=0.0023340339539572597, emissions=4.650882323345498e-06, emissions_rate=0.001992636960340751, cpu_power=42.5, gpu_power=63.0373229769635, ram_power=0.27120494842529297, cpu_energy=5.077258202800295e-06, gpu_energy=7.4900059923166395e-06, ram_energy=3.216463597966938e-08, energy_consumed=1.2599428831096603e-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%|▏ | 24/1000 [00:00<00:04, 232.13it/s]
|
51 |
5%|▍ | 48/1000 [00:00<00:04, 232.59it/s]
|
52 |
7%|▋ | 72/1000 [00:00<00:03, 235.05it/s]
|
53 |
10%|▉ | 96/1000 [00:00<00:03, 235.41it/s]
|
54 |
12%|█▏ | 120/1000 [00:00<00:03, 236.18it/s]
|
55 |
14%|█▍ | 144/1000 [00:00<00:03, 236.04it/s]
|
56 |
17%|█▋ | 169/1000 [00:00<00:03, 238.43it/s]
|
57 |
19%|█▉ | 194/1000 [00:00<00:03, 240.36it/s]
|
58 |
22%|██▏ | 219/1000 [00:00<00:03, 242.30it/s]
|
59 |
24%|██▍ | 244/1000 [00:01<00:03, 243.30it/s]
|
60 |
27%|██▋ | 269/1000 [00:01<00:03, 239.03it/s]
|
61 |
29%|██▉ | 294/1000 [00:01<00:02, 240.25it/s]
|
62 |
32%|███▏ | 319/1000 [00:01<00:02, 240.93it/s]
|
63 |
34%|███▍ | 345/1000 [00:01<00:02, 244.95it/s]
|
64 |
37%|███▋ | 370/1000 [00:01<00:02, 245.92it/s]
|
65 |
40%|███▉ | 395/1000 [00:01<00:02, 242.42it/s]
|
66 |
42%|████▏ | 420/1000 [00:01<00:02, 240.53it/s]
|
67 |
44%|████▍ | 445/1000 [00:01<00:02, 240.04it/s]
|
68 |
47%|████▋ | 470/1000 [00:01<00:02, 238.89it/s]
|
69 |
49%|████▉ | 494/1000 [00:02<00:02, 238.23it/s]
|
70 |
52%|█████▏ | 519/1000 [00:02<00:02, 238.99it/s]
|
71 |
54%|█████▍ | 543/1000 [00:02<00:01, 238.73it/s]
|
72 |
57%|█████▋ | 567/1000 [00:02<00:01, 238.93it/s]
|
73 |
59%|█████▉ | 592/1000 [00:02<00:01, 240.02it/s]
|
74 |
62%|██████▏ | 617/1000 [00:02<00:01, 239.81it/s]
|
75 |
64%|██████▍ | 641/1000 [00:02<00:01, 238.70it/s]
|
76 |
67%|██████▋ | 666/1000 [00:02<00:01, 239.52it/s]
|
77 |
69%|██████▉ | 691/1000 [00:02<00:01, 240.10it/s]
|
78 |
72%|███████▏ | 716/1000 [00:02<00:01, 238.09it/s]
|
79 |
74%|███████▍ | 740/1000 [00:03<00:01, 237.97it/s]
|
80 |
76%|███████▋ | 764/1000 [00:03<00:00, 237.28it/s]
|
81 |
79%|███████▉ | 789/1000 [00:03<00:00, 240.15it/s]
|
82 |
81%|████████▏ | 814/1000 [00:03<00:00, 239.66it/s]
|
83 |
84%|████████▍ | 839/1000 [00:03<00:00, 240.92it/s]
|
84 |
86%|████████▋ | 864/1000 [00:03<00:00, 241.84it/s]
|
85 |
89%|████████▉ | 890/1000 [00:03<00:00, 245.94it/s]
|
86 |
92%|█████████▏| 915/1000 [00:03<00:00, 245.73it/s]
|
87 |
94%|█████████▍| 941/1000 [00:03<00:00, 246.65it/s]
|
88 |
97%|█████████▋| 967/1000 [00:04<00:00, 248.33it/s]
|
89 |
99%|█████████▉| 993/1000 [00:04<00:00, 249.41it/s]
|
90 |
+
[codecarbon WARNING @ 17:45:50] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
91 |
+
[codecarbon INFO @ 17:45:50] Energy consumed for RAM : 0.000000 kWh. RAM Power : 0.3414988517761231 W
|
92 |
+
[codecarbon DEBUG @ 17:45:50] RAM : 0.34 W during 4.15 s [measurement time: 0.0004]
|
93 |
+
[codecarbon INFO @ 17:45:50] Energy consumed for all GPUs : 0.000186 kWh. Total GPU Power : 154.8686633842306 W
|
94 |
+
[codecarbon DEBUG @ 17:45:50] GPU : 154.87 W during 4.15 s [measurement time: 0.0023]
|
95 |
+
[codecarbon INFO @ 17:45:50] Energy consumed for all CPUs : 0.000054 kWh. Total CPU Power : 42.5 W
|
96 |
+
[codecarbon DEBUG @ 17:45:50] CPU : 42.50 W during 4.15 s [measurement time: 0.0000]
|
97 |
+
[codecarbon INFO @ 17:45:50] 0.000241 kWh of electricity used since the beginning.
|
98 |
+
[codecarbon DEBUG @ 17:45:50] last_duration=4.150609537959099
|
99 |
+
------------------------
|
100 |
+
[codecarbon DEBUG @ 17:45:50] EmissionsData(timestamp='2024-10-08T17:45:50', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=4.1538833839586005, emissions=8.882282087586446e-05, emissions_rate=2.1383080039964286e-05, cpu_power=42.5, gpu_power=154.8686633842306, ram_power=0.3414988517761231, cpu_energy=5.411494930020935e-05, gpu_energy=0.00018608375997786197, ram_energy=4.2591469600652615e-07, energy_consumed=0.00024062462397407783, 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)
|
101 |
+
[codecarbon DEBUG @ 17:45:50] EmissionsData(timestamp='2024-10-08T17:45:50', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=0.002038832986727357, emissions=8.882282087586446e-05, emissions_rate=0.043565520792577944, cpu_power=42.5, gpu_power=154.8686633842306, ram_power=0.3414988517761231, cpu_energy=5.411494930020935e-05, gpu_energy=0.00018608375997786197, ram_energy=4.2591469600652615e-07, energy_consumed=0.00024062462397407783, 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)
|
102 |
+
|
103 |
0%| | 0/1000 [00:00<?, ?it/s]
|
104 |
2%|▎ | 25/1000 [00:00<00:04, 240.66it/s]
|
105 |
5%|▌ | 50/1000 [00:00<00:03, 240.67it/s]
|
106 |
8%|▊ | 75/1000 [00:00<00:03, 239.59it/s]
|
107 |
10%|█ | 100/1000 [00:00<00:03, 239.40it/s]
|
108 |
13%|█▎ | 126/1000 [00:00<00:03, 244.69it/s]
|
109 |
15%|█▌ | 151/1000 [00:00<00:03, 244.80it/s]
|
110 |
18%|█▊ | 177/1000 [00:00<00:03, 248.28it/s]
|
111 |
20%|██ | 202/1000 [00:00<00:03, 247.58it/s]
|
112 |
23%|██▎ | 228/1000 [00:00<00:03, 249.63it/s]
|
113 |
25%|██▌ | 253/1000 [00:01<00:03, 245.54it/s]
|
114 |
28%|██▊ | 279/1000 [00:01<00:02, 247.39it/s]
|
115 |
30%|███ | 304/1000 [00:01<00:02, 246.88it/s]
|
116 |
33%|███▎ | 329/1000 [00:01<00:02, 246.05it/s]
|
117 |
35%|███▌ | 354/1000 [00:01<00:02, 246.09it/s]
|
118 |
38%|███▊ | 380/1000 [00:01<00:02, 246.70it/s]
|
119 |
40%|████ | 405/1000 [00:01<00:02, 244.90it/s]
|
120 |
43%|████▎ | 430/1000 [00:01<00:02, 245.35it/s]
|
121 |
46%|████▌ | 455/1000 [00:01<00:02, 245.24it/s]
|
122 |
48%|████▊ | 481/1000 [00:01<00:02, 248.20it/s]
|
123 |
51%|█████ | 506/1000 [00:02<00:01, 247.49it/s]
|
124 |
53%|█████▎ | 531/1000 [00:02<00:01, 247.64it/s]
|
125 |
56%|█████▌ | 556/1000 [00:02<00:01, 246.43it/s]
|
126 |
58%|█████▊ | 581/1000 [00:02<00:01, 245.78it/s]
|
127 |
61%|██████ | 606/1000 [00:02<00:01, 245.25it/s]
|
128 |
63%|██████▎ | 631/1000 [00:02<00:01, 246.63it/s]
|
129 |
66%|██████▌ | 656/1000 [00:02<00:01, 246.66it/s]
|
130 |
68%|██████▊ | 682/1000 [00:02<00:01, 248.39it/s]
|
131 |
71%|███████ | 707/1000 [00:02<00:01, 246.98it/s]
|
132 |
73%|███████▎ | 732/1000 [00:02<00:01, 242.60it/s]
|
133 |
76%|███████▌ | 757/1000 [00:03<00:01, 241.93it/s]
|
134 |
78%|███████▊ | 783/1000 [00:03<00:00, 244.61it/s]
|
135 |
81%|████████ | 808/1000 [00:03<00:00, 245.02it/s]
|
136 |
83%|████████▎ | 834/1000 [00:03<00:00, 246.75it/s]
|
137 |
86%|████████▌ | 859/1000 [00:03<00:00, 247.07it/s]
|
138 |
88%|████████▊ | 885/1000 [00:03<00:00, 249.91it/s]
|
139 |
91%|█████████ | 910/1000 [00:03<00:00, 249.60it/s]
|
140 |
94%|█████████▎| 935/1000 [00:03<00:00, 249.51it/s]
|
141 |
96%|█████████▌| 960/1000 [00:03<00:00, 249.52it/s]
|
142 |
99%|█████████▊| 986/1000 [00:03<00:00, 250.69it/s]
|
143 |
+
[codecarbon WARNING @ 17:45:54] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
144 |
+
[codecarbon INFO @ 17:45:54] Energy consumed for RAM : 0.000001 kWh. RAM Power : 0.3415846824645996 W
|
145 |
+
[codecarbon DEBUG @ 17:45:54] RAM : 0.34 W during 4.06 s [measurement time: 0.0004]
|
146 |
+
[codecarbon INFO @ 17:45:54] Energy consumed for all GPUs : 0.000369 kWh. Total GPU Power : 162.1296319670187 W
|
147 |
+
[codecarbon DEBUG @ 17:45:54] GPU : 162.13 W during 4.06 s [measurement time: 0.0023]
|
148 |
+
[codecarbon INFO @ 17:45:54] Energy consumed for all CPUs : 0.000102 kWh. Total CPU Power : 42.5 W
|
149 |
+
[codecarbon DEBUG @ 17:45:54] CPU : 42.50 W during 4.06 s [measurement time: 0.0000]
|
150 |
+
[codecarbon INFO @ 17:45:54] 0.000472 kWh of electricity used since the beginning.
|
151 |
+
[codecarbon DEBUG @ 17:45:54] last_duration=4.057614845922217
|
152 |
+
------------------------
|
153 |
+
[codecarbon DEBUG @ 17:45:54] EmissionsData(timestamp='2024-10-08T17:45:54', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=4.0608120509423316, emissions=0.00017412862222173414, emissions_rate=4.288024661996527e-05, cpu_power=42.5, gpu_power=162.1296319670187, ram_power=0.3415846824645996, cpu_energy=0.00010205388715468063, gpu_energy=0.0003688566839743501, ram_energy=8.109282791723953e-07, energy_consumed=0.00047172149940820314, 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)
|
154 |
+
[codecarbon DEBUG @ 17:45:54] EmissionsData(timestamp='2024-10-08T17:45:54', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=0.00202990195248276, emissions=0.00017412862222173414, emissions_rate=0.08578178961242859, cpu_power=42.5, gpu_power=162.1296319670187, ram_power=0.3415846824645996, cpu_energy=0.00010205388715468063, gpu_energy=0.0003688566839743501, ram_energy=8.109282791723953e-07, energy_consumed=0.00047172149940820314, 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)
|
155 |
+
|
156 |
0%| | 0/1000 [00:00<?, ?it/s]
|
157 |
2%|▎ | 25/1000 [00:00<00:04, 241.64it/s]
|
158 |
5%|▌ | 50/1000 [00:00<00:04, 235.48it/s]
|
159 |
7%|▋ | 74/1000 [00:00<00:03, 234.01it/s]
|
160 |
10%|▉ | 98/1000 [00:00<00:03, 233.69it/s]
|
161 |
12%|█▏ | 123/1000 [00:00<00:03, 236.94it/s]
|
162 |
15%|█▍ | 147/1000 [00:00<00:03, 237.74it/s]
|
163 |
17%|█▋ | 172/1000 [00:00<00:03, 240.12it/s]
|
164 |
20%|█▉ | 197/1000 [00:00<00:03, 240.61it/s]
|
165 |
22%|██▏ | 222/1000 [00:00<00:03, 243.00it/s]
|
166 |
25%|██▍ | 247/1000 [00:01<00:03, 244.76it/s]
|
167 |
27%|██▋ | 272/1000 [00:01<00:02, 243.22it/s]
|
168 |
30%|██▉ | 298/1000 [00:01<00:02, 246.08it/s]
|
169 |
32%|███▏ | 323/1000 [00:01<00:02, 245.21it/s]
|
170 |
35%|███▍ | 348/1000 [00:01<00:02, 245.83it/s]
|
171 |
37%|███▋ | 373/1000 [00:01<00:02, 246.88it/s]
|
172 |
40%|███▉ | 398/1000 [00:01<00:02, 245.89it/s]
|
173 |
42%|████▏ | 423/1000 [00:01<00:02, 246.15it/s]
|
174 |
45%|████▍ | 449/1000 [00:01<00:02, 247.53it/s]
|
175 |
48%|████▊ | 475/1000 [00:01<00:02, 248.64it/s]
|
176 |
50%|█████ | 500/1000 [00:02<00:02, 246.43it/s]
|
177 |
52%|█████▎ | 525/1000 [00:02<00:01, 246.57it/s]
|
178 |
55%|█████▌ | 551/1000 [00:02<00:01, 248.62it/s]
|
179 |
58%|█████▊ | 576/1000 [00:02<00:01, 247.94it/s]
|
180 |
60%|██████ | 601/1000 [00:02<00:01, 245.76it/s]
|
181 |
63%|██████▎ | 626/1000 [00:02<00:01, 246.86it/s]
|
182 |
65%|██████▌ | 651/1000 [00:02<00:01, 246.68it/s]
|
183 |
68%|██████▊ | 677/1000 [00:02<00:01, 248.60it/s]
|
184 |
70%|███████ | 703/1000 [00:02<00:01, 251.55it/s]
|
185 |
73%|███████▎ | 729/1000 [00:02<00:01, 247.28it/s]
|
186 |
75%|███████▌ | 754/1000 [00:03<00:00, 247.97it/s]
|
187 |
78%|███████▊ | 780/1000 [00:03<00:00, 249.72it/s]
|
188 |
80%|████████ | 805/1000 [00:03<00:00, 248.77it/s]
|
189 |
83%|████████▎ | 830/1000 [00:03<00:00, 247.16it/s]
|
190 |
86%|████████▌ | 856/1000 [00:03<00:00, 248.52it/s]
|
191 |
88%|████████▊ | 883/1000 [00:03<00:00, 252.05it/s]
|
192 |
91%|█████████ | 909/1000 [00:03<00:00, 251.10it/s]
|
193 |
94%|█████████▎| 935/1000 [00:03<00:00, 250.73it/s]
|
194 |
96%|█████████▌| 961/1000 [00:03<00:00, 246.75it/s]
|
195 |
99%|█████████▊| 986/1000 [00:04<00:00, 244.94it/s]
|
196 |
+
[codecarbon WARNING @ 17:45:58] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
197 |
+
[codecarbon INFO @ 17:45:58] Energy consumed for RAM : 0.000001 kWh. RAM Power : 0.3415846824645996 W
|
198 |
+
[codecarbon DEBUG @ 17:45:58] RAM : 0.34 W during 4.07 s [measurement time: 0.0005]
|
199 |
+
[codecarbon INFO @ 17:45:58] Energy consumed for all GPUs : 0.000552 kWh. Total GPU Power : 162.0965351696386 W
|
200 |
+
[codecarbon DEBUG @ 17:45:58] GPU : 162.10 W during 4.07 s [measurement time: 0.0023]
|
201 |
+
[codecarbon INFO @ 17:45:58] Energy consumed for all CPUs : 0.000150 kWh. Total CPU Power : 42.5 W
|
202 |
+
[codecarbon DEBUG @ 17:45:58] CPU : 42.50 W during 4.08 s [measurement time: 0.0000]
|
203 |
+
[codecarbon INFO @ 17:45:58] 0.000704 kWh of electricity used since the beginning.
|
204 |
+
[codecarbon DEBUG @ 17:45:58] last_duration=4.073438499006443
|
205 |
+
------------------------
|
206 |
+
[codecarbon DEBUG @ 17:45:58] EmissionsData(timestamp='2024-10-08T17:45:58', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=4.076690844958648, emissions=0.0002597547381454295, emissions_rate=6.371705582400235e-05, cpu_power=42.5, gpu_power=162.0965351696386, ram_power=0.3415846824645996, cpu_energy=0.0001501801794589685, gpu_energy=0.0005523084974017323, ram_energy=1.197443163357853e-06, energy_consumed=0.0007036861200240586, 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)
|
207 |
+
[codecarbon DEBUG @ 17:45:58] EmissionsData(timestamp='2024-10-08T17:45:58', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=0.0020065020071342587, emissions=0.0002597547381454295, emissions_rate=0.12945650551150872, cpu_power=42.5, gpu_power=162.0965351696386, ram_power=0.3415846824645996, cpu_energy=0.0001501801794589685, gpu_energy=0.0005523084974017323, ram_energy=1.197443163357853e-06, energy_consumed=0.0007036861200240586, 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)
|
208 |
+
|
209 |
0%| | 0/1000 [00:00<?, ?it/s]
|
210 |
3%|▎ | 26/1000 [00:00<00:03, 251.28it/s]
|
211 |
5%|▌ | 52/1000 [00:00<00:03, 247.56it/s]
|
212 |
8%|▊ | 77/1000 [00:00<00:03, 243.68it/s]
|
213 |
10%|█ | 102/1000 [00:00<00:03, 238.39it/s]
|
214 |
13%|█▎ | 128/1000 [00:00<00:03, 243.64it/s]
|
215 |
15%|█▌ | 153/1000 [00:00<00:03, 241.02it/s]
|
216 |
18%|█▊ | 178/1000 [00:00<00:03, 242.09it/s]
|
217 |
20%|██ | 203/1000 [00:00<00:03, 240.07it/s]
|
218 |
23%|██▎ | 228/1000 [00:00<00:03, 240.56it/s]
|
219 |
25%|██▌ | 253/1000 [00:01<00:03, 237.45it/s]
|
220 |
28%|██▊ | 278/1000 [00:01<00:02, 241.03it/s]
|
221 |
30%|███ | 304/1000 [00:01<00:02, 244.40it/s]
|
222 |
33%|███▎ | 330/1000 [00:01<00:02, 246.88it/s]
|
223 |
36%|███▌ | 356/1000 [00:01<00:02, 250.21it/s]
|
224 |
38%|███▊ | 382/1000 [00:01<00:02, 252.15it/s]
|
225 |
41%|████ | 408/1000 [00:01<00:02, 249.31it/s]
|
226 |
43%|████▎ | 434/1000 [00:01<00:02, 249.27it/s]
|
227 |
46%|████▌ | 460/1000 [00:01<00:02, 248.76it/s]
|
228 |
49%|████▊ | 486/1000 [00:01<00:02, 250.96it/s]
|
229 |
51%|█████ | 512/1000 [00:02<00:01, 248.85it/s]
|
230 |
54%|█████▍ | 538/1000 [00:02<00:01, 249.96it/s]
|
231 |
56%|█████▋ | 564/1000 [00:02<00:01, 249.82it/s]
|
232 |
59%|█████▉ | 589/1000 [00:02<00:01, 247.59it/s]
|
233 |
61%|██████▏ | 614/1000 [00:02<00:01, 247.71it/s]
|
234 |
64%|██████▍ | 639/1000 [00:02<00:01, 246.60it/s]
|
235 |
66%|██████▋ | 664/1000 [00:02<00:01, 247.47it/s]
|
236 |
69%|██████▉ | 690/1000 [00:02<00:01, 248.95it/s]
|
237 |
72%|███████▏ | 715/1000 [00:02<00:01, 247.43it/s]
|
238 |
74%|███████▍ | 740/1000 [00:03<00:01, 246.15it/s]
|
239 |
76%|███████▋ | 765/1000 [00:03<00:00, 243.39it/s]
|
240 |
79%|███████▉ | 790/1000 [00:03<00:00, 244.35it/s]
|
241 |
82%|████████▏ | 815/1000 [00:03<00:00, 242.90it/s]
|
242 |
84%|████████▍ | 840/1000 [00:03<00:00, 243.48it/s]
|
243 |
86%|████████▋ | 865/1000 [00:03<00:00, 242.56it/s]
|
244 |
89%|████████▉ | 890/1000 [00:03<00:00, 243.57it/s]
|
245 |
92%|█████████▏| 915/1000 [00:03<00:00, 243.41it/s]
|
246 |
94%|█████████▍| 941/1000 [00:03<00:00, 245.33it/s]
|
247 |
97%|█████████▋| 967/1000 [00:03<00:00, 247.63it/s]
|
248 |
99%|█████████▉| 993/1000 [00:04<00:00, 248.58it/s]
|
249 |
+
[codecarbon WARNING @ 17:46:02] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
250 |
+
[codecarbon INFO @ 17:46:02] Energy consumed for RAM : 0.000002 kWh. RAM Power : 0.34159326553344727 W
|
251 |
+
[codecarbon DEBUG @ 17:46:02] RAM : 0.34 W during 4.07 s [measurement time: 0.0004]
|
252 |
+
[codecarbon INFO @ 17:46:02] Energy consumed for all GPUs : 0.000736 kWh. Total GPU Power : 162.38451983281504 W
|
253 |
+
[codecarbon DEBUG @ 17:46:02] GPU : 162.38 W during 4.07 s [measurement time: 0.0023]
|
254 |
+
[codecarbon INFO @ 17:46:02] Energy consumed for all CPUs : 0.000198 kWh. Total CPU Power : 42.5 W
|
255 |
+
[codecarbon DEBUG @ 17:46:02] CPU : 42.50 W during 4.07 s [measurement time: 0.0000]
|
256 |
+
[codecarbon INFO @ 17:46:02] 0.000936 kWh of electricity used since the beginning.
|
257 |
+
[codecarbon DEBUG @ 17:46:02] last_duration=4.069619916961528
|
258 |
+
------------------------
|
259 |
+
[codecarbon DEBUG @ 17:46:02] EmissionsData(timestamp='2024-10-08T17:46:02', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=4.072772781946696, emissions=0.00034541895655632715, emissions_rate=8.48117425277097e-05, cpu_power=42.5, gpu_power=162.38451983281504, ram_power=0.34159326553344727, cpu_energy=0.00019826032345671493, gpu_energy=0.0007359100331720825, ram_energy=1.5836051941991465e-06, energy_consumed=0.0009357539618229967, 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)
|
260 |
+
[codecarbon DEBUG @ 17:46:02] EmissionsData(timestamp='2024-10-08T17:46:02', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=0.0020212020026519895, emissions=0.00034541895655632715, emissions_rate=0.1708977905736824, cpu_power=42.5, gpu_power=162.38451983281504, ram_power=0.34159326553344727, cpu_energy=0.00019826032345671493, gpu_energy=0.0007359100331720825, ram_energy=1.5836051941991465e-06, energy_consumed=0.0009357539618229967, 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)
|
261 |
+
|
262 |
0%| | 0/1000 [00:00<?, ?it/s]
|
263 |
2%|▎ | 25/1000 [00:00<00:04, 241.79it/s]
|
264 |
5%|▌ | 50/1000 [00:00<00:03, 243.28it/s]
|
265 |
8%|▊ | 75/1000 [00:00<00:03, 241.90it/s]
|
266 |
10%|█ | 100/1000 [00:00<00:03, 240.57it/s]
|
267 |
12%|█▎ | 125/1000 [00:00<00:03, 241.38it/s]
|
268 |
15%|█▌ | 150/1000 [00:00<00:03, 239.46it/s]
|
269 |
18%|█▊ | 175/1000 [00:00<00:03, 242.47it/s]
|
270 |
20%|██ | 200/1000 [00:00<00:03, 242.57it/s]
|
271 |
23%|██▎ | 226/1000 [00:00<00:03, 245.46it/s]
|
272 |
25%|██▌ | 251/1000 [00:01<00:03, 240.23it/s]
|
273 |
28%|██▊ | 276/1000 [00:01<00:02, 242.47it/s]
|
274 |
30%|███ | 301/1000 [00:01<00:02, 243.27it/s]
|
275 |
33%|███▎ | 326/1000 [00:01<00:02, 243.77it/s]
|
276 |
35%|███▌ | 351/1000 [00:01<00:02, 244.49it/s]
|
277 |
38%|███▊ | 376/1000 [00:01<00:02, 245.40it/s]
|
278 |
40%|████ | 401/1000 [00:01<00:02, 244.55it/s]
|
279 |
43%|████▎ | 426/1000 [00:01<00:02, 241.76it/s]
|
280 |
45%|████▌ | 451/1000 [00:01<00:02, 241.52it/s]
|
281 |
48%|████▊ | 476/1000 [00:01<00:02, 243.79it/s]
|
282 |
50%|█████ | 501/1000 [00:02<00:02, 244.32it/s]
|
283 |
53%|█████▎ | 526/1000 [00:02<00:01, 245.49it/s]
|
284 |
55%|█████▌ | 552/1000 [00:02<00:01, 247.91it/s]
|
285 |
58%|█████▊ | 577/1000 [00:02<00:01, 246.19it/s]
|
286 |
60%|██████ | 602/1000 [00:02<00:01, 245.40it/s]
|
287 |
63%|██████▎ | 627/1000 [00:02<00:01, 246.63it/s]
|
288 |
65%|██████▌ | 652/1000 [00:02<00:01, 247.11it/s]
|
289 |
68%|██████▊ | 678/1000 [00:02<00:01, 248.91it/s]
|
290 |
70%|███████ | 704/1000 [00:02<00:01, 251.36it/s]
|
291 |
73%|███████▎ | 730/1000 [00:02<00:01, 246.82it/s]
|
292 |
76%|███████▌ | 755/1000 [00:03<00:00, 247.49it/s]
|
293 |
78%|███████▊ | 781/1000 [00:03<00:00, 249.28it/s]
|
294 |
81%|████████ | 807/1000 [00:03<00:00, 250.35it/s]
|
295 |
83%|████████▎ | 833/1000 [00:03<00:00, 250.54it/s]
|
296 |
86%|████████▌ | 859/1000 [00:03<00:00, 248.35it/s]
|
297 |
88%|████████▊ | 884/1000 [00:03<00:00, 247.99it/s]
|
298 |
91%|█████████ | 909/1000 [00:03<00:00, 247.29it/s]
|
299 |
93%|█████████▎| 934/1000 [00:03<00:00, 247.60it/s]
|
300 |
96%|█████████▌| 959/1000 [00:03<00:00, 248.03it/s]
|
301 |
98%|█████████▊| 985/1000 [00:04<00:00, 249.35it/s]
|
302 |
+
[codecarbon WARNING @ 17:46:06] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
303 |
+
[codecarbon INFO @ 17:46:06] Energy consumed for RAM : 0.000002 kWh. RAM Power : 0.34159326553344727 W
|
304 |
+
[codecarbon DEBUG @ 17:46:06] RAM : 0.34 W during 4.07 s [measurement time: 0.0004]
|
305 |
+
[codecarbon INFO @ 17:46:06] Energy consumed for all GPUs : 0.000915 kWh. Total GPU Power : 158.4929253627087 W
|
306 |
+
[codecarbon DEBUG @ 17:46:06] GPU : 158.49 W during 4.07 s [measurement time: 0.0023]
|
307 |
+
[codecarbon INFO @ 17:46:06] Energy consumed for all CPUs : 0.000246 kWh. Total CPU Power : 42.5 W
|
308 |
+
[codecarbon DEBUG @ 17:46:06] CPU : 42.50 W during 4.07 s [measurement time: 0.0000]
|
309 |
+
[codecarbon INFO @ 17:46:06] 0.001164 kWh of electricity used since the beginning.
|
310 |
+
[codecarbon DEBUG @ 17:46:06] last_duration=4.071264745900407
|
311 |
+
------------------------
|
312 |
+
[codecarbon DEBUG @ 17:46:06] EmissionsData(timestamp='2024-10-08T17:46:06', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=4.074469420942478, emissions=0.0004294932006589813, emissions_rate=0.00010541082930980347, cpu_power=42.5, gpu_power=158.4929253627087, ram_power=0.34159326553344727, cpu_energy=0.0002463605098520121, gpu_energy=0.0009151840654801902, ram_energy=1.9699234070803304e-06, energy_consumed=0.0011635144987392828, 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)
|
313 |
+
[codecarbon DEBUG @ 17:46:06] EmissionsData(timestamp='2024-10-08T17:46:06', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=0.002025341964326799, emissions=0.0004294932006589813, emissions_rate=0.21205959695884743, cpu_power=42.5, gpu_power=158.4929253627087, ram_power=0.34159326553344727, cpu_energy=0.0002463605098520121, gpu_energy=0.0009151840654801902, ram_energy=1.9699234070803304e-06, energy_consumed=0.0011635144987392828, 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)
|
314 |
+
|
315 |
0%| | 0/1000 [00:00<?, ?it/s]
|
316 |
2%|▎ | 25/1000 [00:00<00:04, 241.41it/s]
|
317 |
5%|▌ | 50/1000 [00:00<00:03, 238.51it/s]
|
318 |
7%|▋ | 74/1000 [00:00<00:03, 235.88it/s]
|
319 |
10%|▉ | 98/1000 [00:00<00:03, 235.07it/s]
|
320 |
12%|█▏ | 123/1000 [00:00<00:03, 240.11it/s]
|
321 |
15%|█▍ | 148/1000 [00:00<00:03, 241.07it/s]
|
322 |
17%|█▋ | 174/1000 [00:00<00:03, 245.15it/s]
|
323 |
20%|█▉ | 199/1000 [00:00<00:03, 244.56it/s]
|
324 |
22%|██▎ | 225/1000 [00:00<00:03, 246.82it/s]
|
325 |
25%|██▌ | 250/1000 [00:01<00:03, 244.30it/s]
|
326 |
28%|██▊ | 275/1000 [00:01<00:02, 244.49it/s]
|
327 |
30%|███ | 301/1000 [00:01<00:02, 247.32it/s]
|
328 |
33%|███▎ | 327/1000 [00:01<00:02, 248.43it/s]
|
329 |
35%|███▌ | 353/1000 [00:01<00:02, 250.58it/s]
|
330 |
38%|███▊ | 379/1000 [00:01<00:02, 252.37it/s]
|
331 |
40%|████ | 405/1000 [00:01<00:02, 248.97it/s]
|
332 |
43%|████▎ | 430/1000 [00:01<00:02, 248.24it/s]
|
333 |
46%|████▌ | 455/1000 [00:01<00:02, 247.54it/s]
|
334 |
48%|████▊ | 481/1000 [00:01<00:02, 249.19it/s]
|
335 |
51%|█████ | 506/1000 [00:02<00:01, 248.17it/s]
|
336 |
53%|█████▎ | 531/1000 [00:02<00:01, 248.07it/s]
|
337 |
56%|█████▌ | 557/1000 [00:02<00:01, 248.49it/s]
|
338 |
58%|█████▊ | 582/1000 [00:02<00:01, 247.83it/s]
|
339 |
61%|██████ | 607/1000 [00:02<00:01, 246.49it/s]
|
340 |
63%|██████▎ | 632/1000 [00:02<00:01, 246.93it/s]
|
341 |
66%|██████▌ | 657/1000 [00:02<00:01, 246.65it/s]
|
342 |
68%|██████▊ | 683/1000 [00:02<00:01, 248.23it/s]
|
343 |
71%|███████ | 708/1000 [00:02<00:01, 245.89it/s]
|
344 |
73%|███████▎ | 733/1000 [00:02<00:01, 240.08it/s]
|
345 |
76%|███████▌ | 758/1000 [00:03<00:01, 241.27it/s]
|
346 |
78%|███████▊ | 784/1000 [00:03<00:00, 245.02it/s]
|
347 |
81%|████████ | 809/1000 [00:03<00:00, 245.98it/s]
|
348 |
84%|████████▎ | 835/1000 [00:03<00:00, 248.51it/s]
|
349 |
86%|████████▌ | 860/1000 [00:03<00:00, 248.59it/s]
|
350 |
89%|████████▊ | 886/1000 [00:03<00:00, 249.74it/s]
|
351 |
91%|█████████ | 911/1000 [00:03<00:00, 246.61it/s]
|
352 |
94%|█████████▎| 936/1000 [00:03<00:00, 244.80it/s]
|
353 |
96%|█████████▌| 961/1000 [00:03<00:00, 244.95it/s]
|
354 |
99%|█████████▊| 986/1000 [00:04<00:00, 244.06it/s]
|
355 |
+
[codecarbon WARNING @ 17:46:10] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
356 |
+
[codecarbon INFO @ 17:46:10] Energy consumed for RAM : 0.000002 kWh. RAM Power : 0.34159326553344727 W
|
357 |
+
[codecarbon DEBUG @ 17:46:10] RAM : 0.34 W during 4.07 s [measurement time: 0.0004]
|
358 |
+
[codecarbon INFO @ 17:46:10] Energy consumed for all GPUs : 0.001101 kWh. Total GPU Power : 164.46850700102073 W
|
359 |
+
[codecarbon DEBUG @ 17:46:10] GPU : 164.47 W during 4.07 s [measurement time: 0.0049]
|
360 |
+
[codecarbon INFO @ 17:46:10] Energy consumed for all CPUs : 0.000294 kWh. Total CPU Power : 42.5 W
|
361 |
+
[codecarbon DEBUG @ 17:46:10] CPU : 42.50 W during 4.08 s [measurement time: 0.0000]
|
362 |
+
[codecarbon INFO @ 17:46:10] 0.001398 kWh of electricity used since the beginning.
|
363 |
+
[codecarbon DEBUG @ 17:46:10] last_duration=4.071254245936871
|
364 |
+
------------------------
|
365 |
+
[codecarbon DEBUG @ 17:46:10] EmissionsData(timestamp='2024-10-08T17:46:10', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=4.077008908963762, emissions=0.0005160733502761376, emissions_rate=0.00012658136437756912, cpu_power=42.5, gpu_power=164.46850700102073, ram_power=0.34159326553344727, cpu_energy=0.00029449068021050257, gpu_energy=0.0011012167143062968, ram_energy=2.3562408048879724e-06, energy_consumed=0.0013980636353216876, 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)
|
366 |
+
[codecarbon DEBUG @ 17:46:10] EmissionsData(timestamp='2024-10-08T17:46:10', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=0.002016001963056624, emissions=0.0005160733502761376, emissions_rate=0.25598851575207643, cpu_power=42.5, gpu_power=164.46850700102073, ram_power=0.34159326553344727, cpu_energy=0.00029449068021050257, gpu_energy=0.0011012167143062968, ram_energy=2.3562408048879724e-06, energy_consumed=0.0013980636353216876, 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)
|
367 |
+
|
368 |
0%| | 0/1000 [00:00<?, ?it/s]
|
369 |
2%|▎ | 25/1000 [00:00<00:04, 242.97it/s]
|
370 |
5%|▌ | 50/1000 [00:00<00:03, 243.94it/s]
|
371 |
8%|▊ | 75/1000 [00:00<00:03, 242.51it/s]
|
372 |
10%|█ | 100/1000 [00:00<00:03, 240.77it/s]
|
373 |
13%|█▎ | 126/1000 [00:00<00:03, 244.94it/s]
|
374 |
15%|█▌ | 151/1000 [00:00<00:03, 244.00it/s]
|
375 |
18%|█▊ | 176/1000 [00:00<00:03, 243.08it/s]
|
376 |
20%|██ | 201/1000 [00:00<00:03, 240.70it/s]
|
377 |
23%|██▎ | 226/1000 [00:00<00:03, 243.03it/s]
|
378 |
25%|██▌ | 251/1000 [00:01<00:03, 239.86it/s]
|
379 |
28%|██▊ | 276/1000 [00:01<00:02, 241.49it/s]
|
380 |
30%|███ | 301/1000 [00:01<00:02, 242.37it/s]
|
381 |
33%|███▎ | 327/1000 [00:01<00:02, 245.13it/s]
|
382 |
35%|███▌ | 353/1000 [00:01<00:02, 247.82it/s]
|
383 |
38%|███▊ | 378/1000 [00:01<00:02, 247.14it/s]
|
384 |
40%|████ | 403/1000 [00:01<00:02, 243.34it/s]
|
385 |
43%|████▎ | 428/1000 [00:01<00:02, 241.13it/s]
|
386 |
45%|████▌ | 453/1000 [00:01<00:02, 240.30it/s]
|
387 |
48%|████▊ | 478/1000 [00:01<00:02, 240.76it/s]
|
388 |
50%|█████ | 503/1000 [00:02<00:02, 241.71it/s]
|
389 |
53%|█████▎ | 528/1000 [00:02<00:01, 243.35it/s]
|
390 |
55%|█████▌ | 553/1000 [00:02<00:01, 243.98it/s]
|
391 |
58%|█████▊ | 578/1000 [00:02<00:01, 241.18it/s]
|
392 |
60%|██████ | 603/1000 [00:02<00:01, 240.25it/s]
|
393 |
63%|██████▎ | 628/1000 [00:02<00:01, 240.60it/s]
|
394 |
65%|██████▌ | 653/1000 [00:02<00:01, 242.11it/s]
|
395 |
68%|██████▊ | 679/1000 [00:02<00:01, 245.25it/s]
|
396 |
70%|███████ | 705/1000 [00:02<00:01, 247.15it/s]
|
397 |
73%|███████▎ | 730/1000 [00:03<00:01, 243.17it/s]
|
398 |
76%|███████▌ | 755/1000 [00:03<00:01, 243.60it/s]
|
399 |
78%|███████▊ | 780/1000 [00:03<00:00, 244.86it/s]
|
400 |
80%|████████ | 805/1000 [00:03<00:00, 244.74it/s]
|
401 |
83%|████████▎ | 830/1000 [00:03<00:00, 243.96it/s]
|
402 |
86%|████████▌ | 855/1000 [00:03<00:00, 244.01it/s]
|
403 |
88%|████████▊ | 880/1000 [00:03<00:00, 244.68it/s]
|
404 |
90%|█████████ | 905/1000 [00:03<00:00, 242.26it/s]
|
405 |
93%|█████████▎| 930/1000 [00:03<00:00, 244.22it/s]
|
406 |
96%|█████████▌| 955/1000 [00:03<00:00, 242.45it/s]
|
407 |
98%|█████████▊| 980/1000 [00:04<00:00, 242.90it/s]
|
408 |
+
[codecarbon WARNING @ 17:46:14] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
409 |
+
[codecarbon INFO @ 17:46:14] Energy consumed for RAM : 0.000003 kWh. RAM Power : 0.34159326553344727 W
|
410 |
+
[codecarbon DEBUG @ 17:46:14] RAM : 0.34 W during 4.12 s [measurement time: 0.0004]
|
411 |
+
[codecarbon INFO @ 17:46:14] Energy consumed for all GPUs : 0.001286 kWh. Total GPU Power : 161.65018274344501 W
|
412 |
+
[codecarbon DEBUG @ 17:46:14] GPU : 161.65 W during 4.12 s [measurement time: 0.0023]
|
413 |
+
[codecarbon INFO @ 17:46:14] Energy consumed for all CPUs : 0.000343 kWh. Total CPU Power : 42.5 W
|
414 |
+
[codecarbon DEBUG @ 17:46:14] CPU : 42.50 W during 4.12 s [measurement time: 0.0000]
|
415 |
+
[codecarbon INFO @ 17:46:14] 0.001632 kWh of electricity used since the beginning.
|
416 |
+
[codecarbon DEBUG @ 17:46:14] EmissionsData(timestamp='2024-10-08T17:46:14', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=4.119170457939617, emissions=0.0006024042239627047, emissions_rate=0.00014624406300098186, cpu_power=42.5, gpu_power=161.65018274344501, ram_power=0.34159326553344727, cpu_energy=0.000343118803825362, gpu_energy=0.0012860718621903189, ram_energy=2.746807283026676e-06, energy_consumed=0.001631937473298708, 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)
|
417 |
+
[codecarbon INFO @ 17:46:14] 0.020969 g.CO2eq/s mean an estimation of 661.2650707401784 kg.CO2eq/year
|
418 |
+
[codecarbon DEBUG @ 17:46:14] last_duration=4.11603766400367
|
419 |
+
------------------------
|
420 |
+
[codecarbon DEBUG @ 17:46:14] EmissionsData(timestamp='2024-10-08T17:46:14', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=4.119501181994565, emissions=0.0006024042239627047, emissions_rate=0.0001462323221548476, cpu_power=42.5, gpu_power=161.65018274344501, ram_power=0.34159326553344727, cpu_energy=0.000343118803825362, gpu_energy=0.0012860718621903189, ram_energy=2.746807283026676e-06, energy_consumed=0.001631937473298708, 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)
|
421 |
+
[codecarbon DEBUG @ 17:46:14] EmissionsData(timestamp='2024-10-08T17:46:14', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=0.002230274025350809, emissions=0.0006024042239627047, emissions_rate=0.2701032326590227, cpu_power=42.5, gpu_power=161.65018274344501, ram_power=0.34159326553344727, cpu_energy=0.000343118803825362, gpu_energy=0.0012860718621903189, ram_energy=2.746807283026676e-06, energy_consumed=0.001631937473298708, 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)
|
422 |
+
|
423 |
0%| | 0/1000 [00:00<?, ?it/s]
|
424 |
2%|▎ | 25/1000 [00:00<00:04, 242.48it/s]
|
425 |
5%|▌ | 50/1000 [00:00<00:03, 239.33it/s]
|
426 |
7%|▋ | 74/1000 [00:00<00:03, 237.08it/s]
|
427 |
10%|▉ | 98/1000 [00:00<00:03, 235.84it/s]
|
428 |
12%|█▏ | 122/1000 [00:00<00:03, 237.12it/s]
|
429 |
15%|█▍ | 146/1000 [00:00<00:03, 237.68it/s]
|
430 |
17%|█▋ | 171/1000 [00:00<00:03, 240.50it/s]
|
431 |
20%|█▉ | 196/1000 [00:00<00:03, 240.96it/s]
|
432 |
22%|██▏ | 221/1000 [00:00<00:03, 242.64it/s]
|
433 |
25%|██▍ | 246/1000 [00:01<00:03, 243.62it/s]
|
434 |
27%|██▋ | 271/1000 [00:01<00:03, 240.19it/s]
|
435 |
30%|██▉ | 296/1000 [00:01<00:02, 240.15it/s]
|
436 |
32%|███▏ | 321/1000 [00:01<00:02, 240.02it/s]
|
437 |
35%|███▍ | 346/1000 [00:01<00:02, 241.38it/s]
|
438 |
37%|███▋ | 371/1000 [00:01<00:02, 240.49it/s]
|
439 |
40%|███▉ | 396/1000 [00:01<00:02, 238.33it/s]
|
440 |
42%|████▏ | 420/1000 [00:01<00:02, 237.94it/s]
|
441 |
44%|████▍ | 444/1000 [00:01<00:02, 238.15it/s]
|
442 |
47%|████▋ | 468/1000 [00:01<00:02, 237.06it/s]
|
443 |
49%|████▉ | 492/1000 [00:02<00:02, 236.40it/s]
|
444 |
52%|█████▏ | 518/1000 [00:02<00:01, 241.32it/s]
|
445 |
54%|█████▍ | 543/1000 [00:02<00:01, 243.11it/s]
|
446 |
57%|█████▋ | 569/1000 [00:02<00:01, 245.52it/s]
|
447 |
59%|█████▉ | 594/1000 [00:02<00:01, 244.38it/s]
|
448 |
62%|██████▏ | 620/1000 [00:02<00:01, 246.77it/s]
|
449 |
64%|██████▍ | 645/1000 [00:02<00:01, 245.72it/s]
|
450 |
67%|██████▋ | 670/1000 [00:02<00:01, 246.88it/s]
|
451 |
70%|██████▉ | 696/1000 [00:02<00:01, 248.13it/s]
|
452 |
72%|██���████▏ | 721/1000 [00:02<00:01, 244.74it/s]
|
453 |
75%|███████▍ | 746/1000 [00:03<00:01, 245.19it/s]
|
454 |
77%|███████▋ | 772/1000 [00:03<00:00, 248.41it/s]
|
455 |
80%|███████▉ | 798/1000 [00:03<00:00, 250.98it/s]
|
456 |
82%|████████▏ | 824/1000 [00:03<00:00, 249.92it/s]
|
457 |
85%|████████▍ | 849/1000 [00:03<00:00, 249.85it/s]
|
458 |
88%|████████▊ | 875/1000 [00:03<00:00, 250.34it/s]
|
459 |
90%|█████████ | 901/1000 [00:03<00:00, 248.70it/s]
|
460 |
93%|█████████▎| 927/1000 [00:03<00:00, 250.07it/s]
|
461 |
95%|█████████▌| 953/1000 [00:03<00:00, 248.78it/s]
|
462 |
98%|█████████▊| 979/1000 [00:04<00:00, 249.79it/s]
|
463 |
+
[codecarbon WARNING @ 17:46:19] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
464 |
+
[codecarbon INFO @ 17:46:19] Energy consumed for RAM : 0.000003 kWh. RAM Power : 0.34159326553344727 W
|
465 |
+
[codecarbon DEBUG @ 17:46:19] RAM : 0.34 W during 4.10 s [measurement time: 0.0004]
|
466 |
+
[codecarbon INFO @ 17:46:19] Energy consumed for all GPUs : 0.001473 kWh. Total GPU Power : 164.48194612894724 W
|
467 |
+
[codecarbon DEBUG @ 17:46:19] GPU : 164.48 W during 4.10 s [measurement time: 0.0023]
|
468 |
+
[codecarbon INFO @ 17:46:19] Energy consumed for all CPUs : 0.000392 kWh. Total CPU Power : 42.5 W
|
469 |
+
[codecarbon DEBUG @ 17:46:19] CPU : 42.50 W during 4.10 s [measurement time: 0.0000]
|
470 |
+
[codecarbon INFO @ 17:46:19] 0.001868 kWh of electricity used since the beginning.
|
471 |
+
[codecarbon DEBUG @ 17:46:19] last_duration=4.1013617139542475
|
472 |
+
------------------------
|
473 |
+
[codecarbon DEBUG @ 17:46:19] EmissionsData(timestamp='2024-10-08T17:46:19', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=4.104507757932879, emissions=0.0006896187634918133, emissions_rate=0.0001680149738196915, cpu_power=42.5, gpu_power=164.48194612894724, ram_power=0.34159326553344727, cpu_energy=0.00039157359306708615, gpu_energy=0.0014734956232391738, ram_energy=3.135981574099118e-06, energy_consumed=0.0018682051978803594, 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)
|
474 |
+
[codecarbon DEBUG @ 17:46:19] EmissionsData(timestamp='2024-10-08T17:46:19', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=0.002965922001749277, emissions=0.0006896187634918133, emissions_rate=0.23251412649593672, cpu_power=42.5, gpu_power=164.48194612894724, ram_power=0.34159326553344727, cpu_energy=0.00039157359306708615, gpu_energy=0.0014734956232391738, ram_energy=3.135981574099118e-06, energy_consumed=0.0018682051978803594, 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)
|
475 |
+
|
476 |
0%| | 0/1000 [00:00<?, ?it/s]
|
477 |
3%|▎ | 26/1000 [00:00<00:03, 250.87it/s]
|
478 |
5%|▌ | 52/1000 [00:00<00:03, 246.71it/s]
|
479 |
8%|▊ | 77/1000 [00:00<00:03, 243.71it/s]
|
480 |
10%|█ | 102/1000 [00:00<00:03, 240.40it/s]
|
481 |
13%|█▎ | 128/1000 [00:00<00:03, 245.00it/s]
|
482 |
15%|█▌ | 153/1000 [00:00<00:03, 243.48it/s]
|
483 |
18%|█▊ | 178/1000 [00:00<00:03, 243.71it/s]
|
484 |
20%|██ | 203/1000 [00:00<00:03, 240.46it/s]
|
485 |
23%|██▎ | 228/1000 [00:00<00:03, 241.44it/s]
|
486 |
25%|██▌ | 253/1000 [00:01<00:03, 239.57it/s]
|
487 |
28%|██▊ | 278/1000 [00:01<00:02, 242.32it/s]
|
488 |
30%|███ | 304/1000 [00:01<00:02, 245.69it/s]
|
489 |
33%|███▎ | 330/1000 [00:01<00:02, 247.52it/s]
|
490 |
36%|███▌ | 356/1000 [00:01<00:02, 250.07it/s]
|
491 |
38%|███▊ | 382/1000 [00:01<00:02, 248.92it/s]
|
492 |
41%|████ | 407/1000 [00:01<00:02, 241.13it/s]
|
493 |
43%|████▎ | 432/1000 [00:01<00:02, 240.00it/s]
|
494 |
46%|████▌ | 457/1000 [00:01<00:02, 238.42it/s]
|
495 |
48%|████▊ | 482/1000 [00:01<00:02, 239.08it/s]
|
496 |
51%|█████ | 506/1000 [00:02<00:02, 237.65it/s]
|
497 |
53%|█████▎ | 530/1000 [00:02<00:01, 235.94it/s]
|
498 |
56%|█████▌ | 555/1000 [00:02<00:01, 237.72it/s]
|
499 |
58%|█████▊ | 580/1000 [00:02<00:01, 238.88it/s]
|
500 |
60%|██████ | 605/1000 [00:02<00:01, 240.42it/s]
|
501 |
63%|██████▎ | 630/1000 [00:02<00:01, 242.91it/s]
|
502 |
66%|██████▌ | 655/1000 [00:02<00:01, 243.67it/s]
|
503 |
68%|██████▊ | 681/1000 [00:02<00:01, 245.77it/s]
|
504 |
71%|███████ | 707/1000 [00:02<00:01, 247.40it/s]
|
505 |
73%|███████▎ | 732/1000 [00:03<00:01, 245.20it/s]
|
506 |
76%|███████▌ | 757/1000 [00:03<00:00, 246.21it/s]
|
507 |
78%|███████▊ | 783/1000 [00:03<00:00, 248.07it/s]
|
508 |
81%|████████ | 809/1000 [00:03<00:00, 248.02it/s]
|
509 |
84%|████████▎ | 835/1000 [00:03<00:00, 249.71it/s]
|
510 |
86%|████████▌ | 860/1000 [00:03<00:00, 249.26it/s]
|
511 |
89%|████████▊ | 886/1000 [00:03<00:00, 251.46it/s]
|
512 |
91%|█████████ | 912/1000 [00:03<00:00, 250.35it/s]
|
513 |
94%|█████████▍| 938/1000 [00:03<00:00, 250.01it/s]
|
514 |
96%|█████████▋| 964/1000 [00:03<00:00, 249.92it/s]
|
515 |
99%|█████████▉| 990/1000 [00:04<00:00, 251.35it/s]
|
516 |
+
[codecarbon WARNING @ 17:46:23] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
517 |
+
[codecarbon INFO @ 17:46:23] Energy consumed for RAM : 0.000004 kWh. RAM Power : 0.34159326553344727 W
|
518 |
+
[codecarbon DEBUG @ 17:46:23] RAM : 0.34 W during 4.09 s [measurement time: 0.0004]
|
519 |
+
[codecarbon INFO @ 17:46:23] Energy consumed for all GPUs : 0.001657 kWh. Total GPU Power : 161.41285552614636 W
|
520 |
+
[codecarbon DEBUG @ 17:46:23] GPU : 161.41 W during 4.09 s [measurement time: 0.0024]
|
521 |
+
[codecarbon INFO @ 17:46:23] Energy consumed for all CPUs : 0.000440 kWh. Total CPU Power : 42.5 W
|
522 |
+
[codecarbon DEBUG @ 17:46:23] CPU : 42.50 W during 4.09 s [measurement time: 0.0000]
|
523 |
+
[codecarbon INFO @ 17:46:23] 0.002100 kWh of electricity used since the beginning.
|
524 |
+
[codecarbon DEBUG @ 17:46:23] last_duration=4.086690132971853
|
525 |
+
------------------------
|
526 |
+
[codecarbon DEBUG @ 17:46:23] EmissionsData(timestamp='2024-10-08T17:46:23', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=4.089944328996353, emissions=0.0007752356741626013, emissions_rate=0.00018954675462608053, cpu_power=42.5, gpu_power=161.41285552614636, ram_power=0.34159326553344727, cpu_energy=0.00043985645825127403, gpu_energy=0.0016567646587422047, ram_energy=3.5237640992897767e-06, energy_consumed=0.0021001448810927686, 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)
|
527 |
+
[codecarbon DEBUG @ 17:46:23] EmissionsData(timestamp='2024-10-08T17:46:23', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=0.0020155319944024086, emissions=0.0007752356741626013, emissions_rate=0.38463079540072165, cpu_power=42.5, gpu_power=161.41285552614636, ram_power=0.34159326553344727, cpu_energy=0.00043985645825127403, gpu_energy=0.0016567646587422047, ram_energy=3.5237640992897767e-06, energy_consumed=0.0021001448810927686, 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)
|
528 |
+
|
529 |
0%| | 0/1000 [00:00<?, ?it/s]
|
530 |
2%|▎ | 25/1000 [00:00<00:03, 249.79it/s]
|
531 |
5%|▌ | 50/1000 [00:00<00:03, 246.48it/s]
|
532 |
8%|▊ | 75/1000 [00:00<00:03, 243.56it/s]
|
533 |
10%|█ | 100/1000 [00:00<00:03, 241.17it/s]
|
534 |
13%|█▎ | 126/1000 [00:00<00:03, 244.96it/s]
|
535 |
15%|█▌ | 151/1000 [00:00<00:03, 244.31it/s]
|
536 |
18%|█▊ | 177/1000 [00:00<00:03, 247.21it/s]
|
537 |
20%|██ | 202/1000 [00:00<00:03, 246.14it/s]
|
538 |
23%|██▎ | 228/1000 [00:00<00:03, 248.10it/s]
|
539 |
25%|██▌ | 253/1000 [00:01<00:03, 243.95it/s]
|
540 |
28%|██▊ | 278/1000 [00:01<00:02, 245.27it/s]
|
541 |
30%|███ | 303/1000 [00:01<00:02, 245.83it/s]
|
542 |
33%|███▎ | 328/1000 [00:01<00:02, 243.98it/s]
|
543 |
35%|███▌ | 353/1000 [00:01<00:02, 243.81it/s]
|
544 |
38%|███▊ | 379/1000 [00:01<00:02, 246.46it/s]
|
545 |
40%|████ | 404/1000 [00:01<00:02, 244.75it/s]
|
546 |
43%|████▎ | 429/1000 [00:01<00:02, 245.19it/s]
|
547 |
45%|████▌ | 454/1000 [00:01<00:02, 245.94it/s]
|
548 |
48%|████▊ | 480/1000 [00:01<00:02, 247.51it/s]
|
549 |
50%|█████ | 505/1000 [00:02<00:02, 246.57it/s]
|
550 |
53%|█████▎ | 530/1000 [00:02<00:01, 246.81it/s]
|
551 |
56%|█████▌ | 555/1000 [00:02<00:01, 246.12it/s]
|
552 |
58%|█████▊ | 580/1000 [00:02<00:01, 243.75it/s]
|
553 |
60%|██████ | 605/1000 [00:02<00:01, 243.86it/s]
|
554 |
63%|██████▎ | 630/1000 [00:02<00:01, 245.55it/s]
|
555 |
66%|██████▌ | 655/1000 [00:02<00:01, 245.75it/s]
|
556 |
68%|██████▊ | 681/1000 [00:02<00:01, 247.53it/s]
|
557 |
71%|███████ | 707/1000 [00:02<00:01, 248.50it/s]
|
558 |
73%|███████▎ | 732/1000 [00:02<00:01, 246.39it/s]
|
559 |
76%|███████▌ | 757/1000 [00:03<00:00, 247.09it/s]
|
560 |
78%|███████▊ | 783/1000 [00:03<00:00, 248.81it/s]
|
561 |
81%|████████ | 809/1000 [00:03<00:00, 248.84it/s]
|
562 |
84%|████████▎ | 835/1000 [00:03<00:00, 250.40it/s]
|
563 |
86%|████████▌ | 861/1000 [00:03<00:00, 249.98it/s]
|
564 |
89%|████████▊ | 887/1000 [00:03<00:00, 251.97it/s]
|
565 |
91%|█████████▏| 913/1000 [00:03<00:00, 250.84it/s]
|
566 |
94%|█████████▍| 939/1000 [00:03<00:00, 250.50it/s]
|
567 |
96%|█████████▋| 965/1000 [00:03<00:00, 250.05it/s]
|
568 |
99%|█████████▉| 991/1000 [00:04<00:00, 251.03it/s]
|
569 |
+
[codecarbon WARNING @ 17:46:27] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
570 |
+
[codecarbon INFO @ 17:46:27] Energy consumed for RAM : 0.000004 kWh. RAM Power : 0.34159326553344727 W
|
571 |
+
[codecarbon DEBUG @ 17:46:27] RAM : 0.34 W during 4.05 s [measurement time: 0.0004]
|
572 |
+
[codecarbon INFO @ 17:46:27] Energy consumed for all GPUs : 0.001847 kWh. Total GPU Power : 168.65450626250285 W
|
573 |
+
[codecarbon DEBUG @ 17:46:27] GPU : 168.65 W during 4.05 s [measurement time: 0.0063]
|
574 |
+
[codecarbon INFO @ 17:46:27] Energy consumed for all CPUs : 0.000488 kWh. Total CPU Power : 42.5 W
|
575 |
+
[codecarbon DEBUG @ 17:46:27] CPU : 42.50 W during 4.06 s [measurement time: 0.0000]
|
576 |
+
[codecarbon INFO @ 17:46:27] 0.002338 kWh of electricity used since the beginning.
|
577 |
+
[codecarbon DEBUG @ 17:46:27] last_duration=4.050157862016931
|
578 |
+
------------------------
|
579 |
+
[codecarbon DEBUG @ 17:46:27] EmissionsData(timestamp='2024-10-08T17:46:27', project_name='codecarbon', run_id='e4beb2e6-d0dd-4af7-ad88-2c55246d3e18', duration=4.057305961963721, emissions=0.0008631121362391392, emissions_rate=0.0002127303546566639, cpu_power=42.5, gpu_power=168.65450626250285, ram_power=0.34159326553344727, cpu_energy=0.0004877540018254271, gpu_energy=0.0018465436994548057, ram_energy=3.908079419530576e-06, energy_consumed=0.0023382057806997634, 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-45-32/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-45-32/forward_codecarbon.json
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"timestamp": "2024-10-08T17:46:27",
|
3 |
+
"project_name": "codecarbon",
|
4 |
+
"run_id": "e4beb2e6-d0dd-4af7-ad88-2c55246d3e18",
|
5 |
+
"duration": -1727736281.2325673,
|
6 |
+
"emissions": 8.787646207653792e-05,
|
7 |
+
"emissions_rate": 2.166958534637007e-05,
|
8 |
+
"cpu_power": 42.5,
|
9 |
+
"gpu_power": 168.65450626250285,
|
10 |
+
"ram_power": 0.34159326553344727,
|
11 |
+
"cpu_energy": 4.789754357415306e-05,
|
12 |
+
"gpu_energy": 0.000189779040712601,
|
13 |
+
"ram_energy": 3.8431532024079956e-07,
|
14 |
+
"energy_consumed": 0.0002380608996069948,
|
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-45-32/preprocess_codecarbon.json
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"timestamp": "2024-10-08T17:45:45",
|
3 |
+
"project_name": "codecarbon",
|
4 |
+
"run_id": "e4beb2e6-d0dd-4af7-ad88-2c55246d3e18",
|
5 |
+
"duration": -1727736284.8599775,
|
6 |
+
"emissions": 4.650882323345498e-06,
|
7 |
+
"emissions_rate": 1.0867440340914447e-05,
|
8 |
+
"cpu_power": 42.5,
|
9 |
+
"gpu_power": 63.0373229769635,
|
10 |
+
"ram_power": 0.27120494842529297,
|
11 |
+
"cpu_energy": 5.077258202800295e-06,
|
12 |
+
"gpu_energy": 7.4900059923166395e-06,
|
13 |
+
"ram_energy": 3.216463597966938e-08,
|
14 |
+
"energy_consumed": 1.2599428831096603e-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 |
+
}
|