Upload folder using huggingface_hub
Browse files- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-37-33/.hydra/config.yaml +94 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-37-33/.hydra/hydra.yaml +175 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-37-33/.hydra/overrides.yaml +2 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-37-33/benchmark_report.json +107 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-37-33/cli.log +113 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-37-33/error.log +178 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-37-33/experiment_config.json +107 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-37-33/forward_codecarbon.json +33 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-37-33/preprocess_codecarbon.json +33 -0
runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-37-33/.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-37-33/.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-37-33
|
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-37-33
|
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-37-33
|
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-37-33/.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-37-33/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.188109110083082e-05,
|
9 |
+
"ram": 3.3865343857697413e-07,
|
10 |
+
"gpu": 0.0001662399663252101,
|
11 |
+
"total": 0.00020845971086461793
|
12 |
+
},
|
13 |
+
"efficiency": {
|
14 |
+
"unit": "samples/kWh",
|
15 |
+
"value": 4797090.026904239
|
16 |
+
},
|
17 |
+
"measures": [
|
18 |
+
{
|
19 |
+
"unit": "kWh",
|
20 |
+
"cpu": 4.6956017864562866e-05,
|
21 |
+
"ram": 3.7974102108077887e-07,
|
22 |
+
"gpu": 0.00017826819817035044,
|
23 |
+
"total": 0.0002256039570559941
|
24 |
+
},
|
25 |
+
{
|
26 |
+
"unit": "kWh",
|
27 |
+
"cpu": 4.6838574120152374e-05,
|
28 |
+
"ram": 3.7887754664751334e-07,
|
29 |
+
"gpu": 0.00018417320289398909,
|
30 |
+
"total": 0.00023139065456078897
|
31 |
+
},
|
32 |
+
{
|
33 |
+
"unit": "kWh",
|
34 |
+
"cpu": 4.657735941596506e-05,
|
35 |
+
"ram": 3.763188667719487e-07,
|
36 |
+
"gpu": 0.00018053347775981443,
|
37 |
+
"total": 0.00022748715604255156
|
38 |
+
},
|
39 |
+
{
|
40 |
+
"unit": "kWh",
|
41 |
+
"cpu": 4.6304481354162715e-05,
|
42 |
+
"ram": 3.745634601940542e-07,
|
43 |
+
"gpu": 0.00018608848220402763,
|
44 |
+
"total": 0.00023276752701838438
|
45 |
+
},
|
46 |
+
{
|
47 |
+
"unit": "kWh",
|
48 |
+
"cpu": 4.606454467633638e-05,
|
49 |
+
"ram": 3.7262550126861713e-07,
|
50 |
+
"gpu": 0.00018232959030783924,
|
51 |
+
"total": 0.0002287667604854442
|
52 |
+
},
|
53 |
+
{
|
54 |
+
"unit": "kWh",
|
55 |
+
"cpu": 4.606616483539356e-05,
|
56 |
+
"ram": 3.7264083369635366e-07,
|
57 |
+
"gpu": 0.000185139037000015,
|
58 |
+
"total": 0.00023157784266910502
|
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.655650746388651e-05,
|
70 |
+
"ram": 3.761730902381322e-07,
|
71 |
+
"gpu": 0.000190077929840049,
|
72 |
+
"total": 0.00023701061039417375
|
73 |
+
},
|
74 |
+
{
|
75 |
+
"unit": "kWh",
|
76 |
+
"cpu": 4.648737090766797e-05,
|
77 |
+
"ram": 3.759652730793352e-07,
|
78 |
+
"gpu": 0.000186037648830073,
|
79 |
+
"total": 0.00023290098501082038
|
80 |
+
},
|
81 |
+
{
|
82 |
+
"unit": "kWh",
|
83 |
+
"cpu": 4.6959890370180805e-05,
|
84 |
+
"ram": 3.796287927930083e-07,
|
85 |
+
"gpu": 0.00018975209624594314,
|
86 |
+
"total": 0.000237091615408917
|
87 |
+
}
|
88 |
+
]
|
89 |
+
},
|
90 |
+
"preprocess": {
|
91 |
+
"memory": null,
|
92 |
+
"latency": null,
|
93 |
+
"throughput": null,
|
94 |
+
"energy": {
|
95 |
+
"unit": "kWh",
|
96 |
+
"cpu": 4.9979329326207435e-06,
|
97 |
+
"ram": 3.1908241179319e-08,
|
98 |
+
"gpu": 7.499728221782576e-06,
|
99 |
+
"total": 1.2529569395582638e-05
|
100 |
+
},
|
101 |
+
"efficiency": {
|
102 |
+
"unit": "samples/kWh",
|
103 |
+
"value": 79811202.47855884
|
104 |
+
},
|
105 |
+
"measures": null
|
106 |
+
}
|
107 |
+
}
|
runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-37-33/cli.log
ADDED
@@ -0,0 +1,113 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[2024-10-08 17:37:36,010][launcher][INFO] - ََAllocating process launcher
|
2 |
+
[2024-10-08 17:37:36,010][process][INFO] - + Setting multiprocessing start method to spawn.
|
3 |
+
[2024-10-08 17:37:36,020][device-isolation][INFO] - + Launched device(s) isolation process 180
|
4 |
+
[2024-10-08 17:37:36,020][device-isolation][INFO] - + Isolating device(s) [0]
|
5 |
+
[2024-10-08 17:37:36,025][process][INFO] - + Launched benchmark in isolated process 181.
|
6 |
+
[PROC-0][2024-10-08 17:37:38,588][datasets][INFO] - PyTorch version 2.4.0 available.
|
7 |
+
[PROC-0][2024-10-08 17:37:39,504][backend][INFO] - َAllocating pytorch backend
|
8 |
+
[PROC-0][2024-10-08 17:37:39,504][backend][INFO] - + Setting random seed to 42
|
9 |
+
[PROC-0][2024-10-08 17:37:40,038][pytorch][INFO] - + Using AutoModel class AutoModelForSequenceClassification
|
10 |
+
[PROC-0][2024-10-08 17:37:40,039][pytorch][INFO] - + Creating backend temporary directory
|
11 |
+
[PROC-0][2024-10-08 17:37:40,039][pytorch][INFO] - + Loading model with random weights
|
12 |
+
[PROC-0][2024-10-08 17:37:40,039][pytorch][INFO] - + Creating no weights model
|
13 |
+
[PROC-0][2024-10-08 17:37:40,039][pytorch][INFO] - + Creating no weights model directory
|
14 |
+
[PROC-0][2024-10-08 17:37:40,039][pytorch][INFO] - + Creating no weights model state dict
|
15 |
+
[PROC-0][2024-10-08 17:37:40,041][pytorch][INFO] - + Saving no weights model safetensors
|
16 |
+
[PROC-0][2024-10-08 17:37:40,041][pytorch][INFO] - + Saving no weights model pretrained config
|
17 |
+
[PROC-0][2024-10-08 17:37:40,042][pytorch][INFO] - + Loading no weights AutoModel
|
18 |
+
[PROC-0][2024-10-08 17:37:40,042][pytorch][INFO] - + Loading model directly on device: cuda
|
19 |
+
[PROC-0][2024-10-08 17:37:40,194][pytorch][INFO] - + Turning on model's eval mode
|
20 |
+
[PROC-0][2024-10-08 17:37:40,200][benchmark][INFO] - Allocating energy_star benchmark
|
21 |
+
[PROC-0][2024-10-08 17:37:40,200][energy_star][INFO] - + Loading raw dataset
|
22 |
+
[PROC-0][2024-10-08 17:37:40,989][energy_star][INFO] - + Initializing Inference report
|
23 |
+
[PROC-0][2024-10-08 17:37:40,989][energy][INFO] - + Tracking GPU energy on devices [0]
|
24 |
+
[PROC-0][2024-10-08 17:37:45,184][energy_star][INFO] - + Preprocessing dataset
|
25 |
+
[PROC-0][2024-10-08 17:37:45,609][energy][INFO] - + Saving codecarbon emission data to preprocess_codecarbon.json
|
26 |
+
[PROC-0][2024-10-08 17:37:45,610][energy_star][INFO] - + Preparing backend for Inference
|
27 |
+
[PROC-0][2024-10-08 17:37:45,610][energy_star][INFO] - + Initialising dataloader
|
28 |
+
[PROC-0][2024-10-08 17:37:45,610][energy_star][INFO] - + Warming up backend for Inference
|
29 |
+
[PROC-0][2024-10-08 17:37:46,118][energy_star][INFO] - + Running Inference energy tracking for 10 iterations
|
30 |
+
[PROC-0][2024-10-08 17:37:46,118][energy_star][INFO] - + Iteration 1/10
|
31 |
+
[PROC-0][2024-10-08 17:37:50,097][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
32 |
+
[PROC-0][2024-10-08 17:37:50,097][energy_star][INFO] - + Iteration 2/10
|
33 |
+
[PROC-0][2024-10-08 17:37:54,065][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
34 |
+
[PROC-0][2024-10-08 17:37:54,066][energy_star][INFO] - + Iteration 3/10
|
35 |
+
[PROC-0][2024-10-08 17:37:58,012][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
36 |
+
[PROC-0][2024-10-08 17:37:58,012][energy_star][INFO] - + Iteration 4/10
|
37 |
+
[PROC-0][2024-10-08 17:38:01,935][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
38 |
+
[PROC-0][2024-10-08 17:38:01,935][energy_star][INFO] - + Iteration 5/10
|
39 |
+
[PROC-0][2024-10-08 17:38:05,838][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
40 |
+
[PROC-0][2024-10-08 17:38:05,838][energy_star][INFO] - + Iteration 6/10
|
41 |
+
[PROC-0][2024-10-08 17:38:09,741][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
42 |
+
[PROC-0][2024-10-08 17:38:09,741][energy_star][INFO] - + Iteration 7/10
|
43 |
+
[PROC-0][2024-10-08 17:38:13,679][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
44 |
+
[PROC-0][2024-10-08 17:38:13,680][energy_star][INFO] - + Iteration 8/10
|
45 |
+
[PROC-0][2024-10-08 17:38:17,624][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
46 |
+
[PROC-0][2024-10-08 17:38:17,624][energy_star][INFO] - + Iteration 9/10
|
47 |
+
[PROC-0][2024-10-08 17:38:21,563][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
48 |
+
[PROC-0][2024-10-08 17:38:21,563][energy_star][INFO] - + Iteration 10/10
|
49 |
+
[PROC-0][2024-10-08 17:38:25,541][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
50 |
+
[PROC-0][2024-10-08 17:38:25,542][energy][INFO] - + forward energy consumption:
|
51 |
+
[PROC-0][2024-10-08 17:38:25,542][energy][INFO] - + CPU: 0.000042 (kWh)
|
52 |
+
[PROC-0][2024-10-08 17:38:25,542][energy][INFO] - + GPU: 0.000166 (kWh)
|
53 |
+
[PROC-0][2024-10-08 17:38:25,542][energy][INFO] - + RAM: 0.000000 (kWh)
|
54 |
+
[PROC-0][2024-10-08 17:38:25,542][energy][INFO] - + total: 0.000208 (kWh)
|
55 |
+
[PROC-0][2024-10-08 17:38:25,543][energy][INFO] - + forward_iteration_1 energy consumption:
|
56 |
+
[PROC-0][2024-10-08 17:38:25,543][energy][INFO] - + CPU: 0.000047 (kWh)
|
57 |
+
[PROC-0][2024-10-08 17:38:25,543][energy][INFO] - + GPU: 0.000178 (kWh)
|
58 |
+
[PROC-0][2024-10-08 17:38:25,543][energy][INFO] - + RAM: 0.000000 (kWh)
|
59 |
+
[PROC-0][2024-10-08 17:38:25,543][energy][INFO] - + total: 0.000226 (kWh)
|
60 |
+
[PROC-0][2024-10-08 17:38:25,543][energy][INFO] - + forward_iteration_2 energy consumption:
|
61 |
+
[PROC-0][2024-10-08 17:38:25,543][energy][INFO] - + CPU: 0.000047 (kWh)
|
62 |
+
[PROC-0][2024-10-08 17:38:25,543][energy][INFO] - + GPU: 0.000184 (kWh)
|
63 |
+
[PROC-0][2024-10-08 17:38:25,543][energy][INFO] - + RAM: 0.000000 (kWh)
|
64 |
+
[PROC-0][2024-10-08 17:38:25,543][energy][INFO] - + total: 0.000231 (kWh)
|
65 |
+
[PROC-0][2024-10-08 17:38:25,543][energy][INFO] - + forward_iteration_3 energy consumption:
|
66 |
+
[PROC-0][2024-10-08 17:38:25,543][energy][INFO] - + CPU: 0.000047 (kWh)
|
67 |
+
[PROC-0][2024-10-08 17:38:25,544][energy][INFO] - + GPU: 0.000181 (kWh)
|
68 |
+
[PROC-0][2024-10-08 17:38:25,544][energy][INFO] - + RAM: 0.000000 (kWh)
|
69 |
+
[PROC-0][2024-10-08 17:38:25,544][energy][INFO] - + total: 0.000227 (kWh)
|
70 |
+
[PROC-0][2024-10-08 17:38:25,544][energy][INFO] - + forward_iteration_4 energy consumption:
|
71 |
+
[PROC-0][2024-10-08 17:38:25,544][energy][INFO] - + CPU: 0.000046 (kWh)
|
72 |
+
[PROC-0][2024-10-08 17:38:25,544][energy][INFO] - + GPU: 0.000186 (kWh)
|
73 |
+
[PROC-0][2024-10-08 17:38:25,544][energy][INFO] - + RAM: 0.000000 (kWh)
|
74 |
+
[PROC-0][2024-10-08 17:38:25,544][energy][INFO] - + total: 0.000233 (kWh)
|
75 |
+
[PROC-0][2024-10-08 17:38:25,544][energy][INFO] - + forward_iteration_5 energy consumption:
|
76 |
+
[PROC-0][2024-10-08 17:38:25,544][energy][INFO] - + CPU: 0.000046 (kWh)
|
77 |
+
[PROC-0][2024-10-08 17:38:25,544][energy][INFO] - + GPU: 0.000182 (kWh)
|
78 |
+
[PROC-0][2024-10-08 17:38:25,544][energy][INFO] - + RAM: 0.000000 (kWh)
|
79 |
+
[PROC-0][2024-10-08 17:38:25,544][energy][INFO] - + total: 0.000229 (kWh)
|
80 |
+
[PROC-0][2024-10-08 17:38:25,545][energy][INFO] - + forward_iteration_6 energy consumption:
|
81 |
+
[PROC-0][2024-10-08 17:38:25,545][energy][INFO] - + CPU: 0.000046 (kWh)
|
82 |
+
[PROC-0][2024-10-08 17:38:25,545][energy][INFO] - + GPU: 0.000185 (kWh)
|
83 |
+
[PROC-0][2024-10-08 17:38:25,545][energy][INFO] - + RAM: 0.000000 (kWh)
|
84 |
+
[PROC-0][2024-10-08 17:38:25,545][energy][INFO] - + total: 0.000232 (kWh)
|
85 |
+
[PROC-0][2024-10-08 17:38:25,545][energy][INFO] - + forward_iteration_7 energy consumption:
|
86 |
+
[PROC-0][2024-10-08 17:38:25,545][energy][INFO] - + CPU: 0.000000 (kWh)
|
87 |
+
[PROC-0][2024-10-08 17:38:25,545][energy][INFO] - + GPU: 0.000000 (kWh)
|
88 |
+
[PROC-0][2024-10-08 17:38:25,545][energy][INFO] - + RAM: 0.000000 (kWh)
|
89 |
+
[PROC-0][2024-10-08 17:38:25,545][energy][INFO] - + total: 0.000000 (kWh)
|
90 |
+
[PROC-0][2024-10-08 17:38:25,545][energy][INFO] - + forward_iteration_8 energy consumption:
|
91 |
+
[PROC-0][2024-10-08 17:38:25,545][energy][INFO] - + CPU: 0.000047 (kWh)
|
92 |
+
[PROC-0][2024-10-08 17:38:25,546][energy][INFO] - + GPU: 0.000190 (kWh)
|
93 |
+
[PROC-0][2024-10-08 17:38:25,546][energy][INFO] - + RAM: 0.000000 (kWh)
|
94 |
+
[PROC-0][2024-10-08 17:38:25,546][energy][INFO] - + total: 0.000237 (kWh)
|
95 |
+
[PROC-0][2024-10-08 17:38:25,546][energy][INFO] - + forward_iteration_9 energy consumption:
|
96 |
+
[PROC-0][2024-10-08 17:38:25,546][energy][INFO] - + CPU: 0.000046 (kWh)
|
97 |
+
[PROC-0][2024-10-08 17:38:25,546][energy][INFO] - + GPU: 0.000186 (kWh)
|
98 |
+
[PROC-0][2024-10-08 17:38:25,546][energy][INFO] - + RAM: 0.000000 (kWh)
|
99 |
+
[PROC-0][2024-10-08 17:38:25,546][energy][INFO] - + total: 0.000233 (kWh)
|
100 |
+
[PROC-0][2024-10-08 17:38:25,546][energy][INFO] - + forward_iteration_10 energy consumption:
|
101 |
+
[PROC-0][2024-10-08 17:38:25,546][energy][INFO] - + CPU: 0.000047 (kWh)
|
102 |
+
[PROC-0][2024-10-08 17:38:25,546][energy][INFO] - + GPU: 0.000190 (kWh)
|
103 |
+
[PROC-0][2024-10-08 17:38:25,546][energy][INFO] - + RAM: 0.000000 (kWh)
|
104 |
+
[PROC-0][2024-10-08 17:38:25,547][energy][INFO] - + total: 0.000237 (kWh)
|
105 |
+
[PROC-0][2024-10-08 17:38:25,547][energy][INFO] - + preprocess energy consumption:
|
106 |
+
[PROC-0][2024-10-08 17:38:25,547][energy][INFO] - + CPU: 0.000005 (kWh)
|
107 |
+
[PROC-0][2024-10-08 17:38:25,547][energy][INFO] - + GPU: 0.000007 (kWh)
|
108 |
+
[PROC-0][2024-10-08 17:38:25,547][energy][INFO] - + RAM: 0.000000 (kWh)
|
109 |
+
[PROC-0][2024-10-08 17:38:25,547][energy][INFO] - + total: 0.000013 (kWh)
|
110 |
+
[PROC-0][2024-10-08 17:38:25,547][energy][INFO] - + forward energy efficiency: 4797090.026904 (samples/kWh)
|
111 |
+
[PROC-0][2024-10-08 17:38:25,547][energy][INFO] - + preprocess energy efficiency: 79811202.478559 (samples/kWh)
|
112 |
+
[2024-10-08 17:38:26,141][device-isolation][INFO] - + Closing device(s) isolation process...
|
113 |
+
[2024-10-08 17:38:26,191][datasets][INFO] - PyTorch version 2.4.0 available.
|
runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-37-33/error.log
ADDED
@@ -0,0 +1,178 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
0 |
0%| | 0/1000 [00:00<?, ?it/s]
|
1 |
2%|▏ | 24/1000 [00:00<00:04, 236.80it/s]
|
2 |
5%|▍ | 49/1000 [00:00<00:03, 238.84it/s]
|
3 |
7%|▋ | 74/1000 [00:00<00:03, 238.52it/s]
|
4 |
10%|▉ | 99/1000 [00:00<00:03, 239.95it/s]
|
5 |
12%|█▎ | 125/1000 [00:00<00:03, 245.57it/s]
|
6 |
15%|█▌ | 150/1000 [00:00<00:03, 246.76it/s]
|
7 |
18%|█▊ | 177/1000 [00:00<00:03, 251.99it/s]
|
8 |
20%|██ | 203/1000 [00:00<00:03, 251.98it/s]
|
9 |
23%|██▎ | 230/1000 [00:00<00:03, 254.62it/s]
|
10 |
26%|██▌ | 256/1000 [00:01<00:02, 249.16it/s]
|
11 |
28%|██▊ | 282/1000 [00:01<00:02, 251.78it/s]
|
12 |
31%|███ | 308/1000 [00:01<00:02, 253.69it/s]
|
13 |
33%|███▎ | 334/1000 [00:01<00:02, 252.84it/s]
|
14 |
36%|███▌ | 360/1000 [00:01<00:02, 252.64it/s]
|
15 |
39%|███▊ | 386/1000 [00:01<00:02, 252.26it/s]
|
16 |
41%|████ | 412/1000 [00:01<00:02, 248.48it/s]
|
17 |
44%|████▎ | 437/1000 [00:01<00:02, 248.26it/s]
|
18 |
46%|████▌ | 462/1000 [00:01<00:02, 247.35it/s]
|
19 |
49%|████▉ | 488/1000 [00:01<00:02, 248.52it/s]
|
20 |
51%|█████▏ | 513/1000 [00:02<00:01, 247.14it/s]
|
21 |
54%|█████▍ | 539/1000 [00:02<00:01, 247.03it/s]
|
22 |
56%|█████▋ | 565/1000 [00:02<00:01, 247.91it/s]
|
23 |
59%|█████▉ | 590/1000 [00:02<00:01, 247.49it/s]
|
24 |
62%|██████▏ | 616/1000 [00:02<00:01, 248.52it/s]
|
25 |
64%|██████▍ | 641/1000 [00:02<00:01, 248.80it/s]
|
26 |
67%|██████▋ | 668/1000 [00:02<00:01, 252.56it/s]
|
27 |
70%|██████▉ | 695/1000 [00:02<00:01, 255.50it/s]
|
28 |
72%|███████▏ | 721/1000 [00:02<00:01, 253.14it/s]
|
29 |
75%|███████▍ | 747/1000 [00:02<00:00, 253.32it/s]
|
30 |
77%|███████▋ | 773/1000 [00:03<00:00, 253.66it/s]
|
31 |
80%|███████▉ | 799/1000 [00:03<00:00, 254.22it/s]
|
32 |
82%|████████▎ | 825/1000 [00:03<00:00, 255.05it/s]
|
33 |
85%|████████▌ | 851/1000 [00:03<00:00, 256.50it/s]
|
34 |
88%|████████▊ | 878/1000 [00:03<00:00, 258.20it/s]
|
35 |
90%|█████████ | 904/1000 [00:03<00:00, 258.24it/s]
|
36 |
93%|█████████▎| 931/1000 [00:03<00:00, 259.78it/s]
|
37 |
96%|█████████▌| 957/1000 [00:03<00:00, 257.94it/s]
|
38 |
98%|█████████▊| 984/1000 [00:03<00:00, 259.40it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
0%| | 0/1000 [00:00<?, ?it/s]
|
40 |
3%|▎ | 26/1000 [00:00<00:03, 251.36it/s]
|
41 |
5%|▌ | 52/1000 [00:00<00:03, 247.39it/s]
|
42 |
8%|▊ | 77/1000 [00:00<00:03, 245.73it/s]
|
43 |
10%|█ | 102/1000 [00:00<00:03, 244.35it/s]
|
44 |
13%|█▎ | 129/1000 [00:00<00:03, 251.52it/s]
|
45 |
16%|█▌ | 155/1000 [00:00<00:03, 252.89it/s]
|
46 |
18%|█▊ | 181/1000 [00:00<00:03, 254.51it/s]
|
47 |
21%|██ | 207/1000 [00:00<00:03, 254.95it/s]
|
48 |
23%|██▎ | 233/1000 [00:00<00:02, 256.21it/s]
|
49 |
26%|██▌ | 259/1000 [00:01<00:02, 247.41it/s]
|
50 |
28%|██▊ | 285/1000 [00:01<00:02, 249.17it/s]
|
51 |
31%|███ | 311/1000 [00:01<00:02, 250.91it/s]
|
52 |
34%|███▎ | 337/1000 [00:01<00:02, 251.02it/s]
|
53 |
36%|███▋ | 363/1000 [00:01<00:02, 252.02it/s]
|
54 |
39%|███▉ | 389/1000 [00:01<00:02, 249.45it/s]
|
55 |
41%|████▏ | 414/1000 [00:01<00:02, 248.99it/s]
|
56 |
44%|████▍ | 440/1000 [00:01<00:02, 251.18it/s]
|
57 |
47%|████▋ | 466/1000 [00:01<00:02, 252.12it/s]
|
58 |
49%|████▉ | 492/1000 [00:01<00:02, 253.32it/s]
|
59 |
52%|█████▏ | 519/1000 [00:02<00:01, 255.47it/s]
|
60 |
55%|█████▍ | 545/1000 [00:02<00:01, 253.59it/s]
|
61 |
57%|█████▋ | 571/1000 [00:02<00:01, 252.65it/s]
|
62 |
60%|█████▉ | 597/1000 [00:02<00:01, 251.10it/s]
|
63 |
62%|██████▏ | 624/1000 [00:02<00:01, 254.18it/s]
|
64 |
65%|██████▌ | 650/1000 [00:02<00:01, 253.17it/s]
|
65 |
68%|██████▊ | 677/1000 [00:02<00:01, 254.33it/s]
|
66 |
70%|███████ | 703/1000 [00:02<00:01, 254.71it/s]
|
67 |
73%|███████▎ | 729/1000 [00:02<00:01, 250.94it/s]
|
68 |
76%|███████▌ | 755/1000 [00:02<00:00, 253.55it/s]
|
69 |
78%|███████▊ | 781/1000 [00:03<00:00, 254.26it/s]
|
70 |
81%|████████ | 807/1000 [00:03<00:00, 254.09it/s]
|
71 |
83%|████████▎ | 834/1000 [00:03<00:00, 256.11it/s]
|
72 |
86%|████████▌ | 860/1000 [00:03<00:00, 256.87it/s]
|
73 |
89%|████████▊ | 886/1000 [00:03<00:00, 257.14it/s]
|
74 |
91%|█████████ | 912/1000 [00:03<00:00, 254.13it/s]
|
75 |
94%|█████████▍| 938/1000 [00:03<00:00, 252.48it/s]
|
76 |
96%|█████████▋| 964/1000 [00:03<00:00, 253.28it/s]
|
77 |
99%|█████████▉| 990/1000 [00:03<00:00, 251.83it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
0%| | 0/1000 [00:00<?, ?it/s]
|
79 |
2%|▎ | 25/1000 [00:00<00:04, 242.17it/s]
|
80 |
5%|▌ | 51/1000 [00:00<00:03, 247.77it/s]
|
81 |
8%|▊ | 76/1000 [00:00<00:03, 248.29it/s]
|
82 |
10%|█ | 101/1000 [00:00<00:03, 245.79it/s]
|
83 |
13%|█▎ | 128/1000 [00:00<00:03, 251.06it/s]
|
84 |
15%|█▌ | 154/1000 [00:00<00:03, 252.34it/s]
|
85 |
18%|█▊ | 180/1000 [00:00<00:03, 251.97it/s]
|
86 |
21%|██ | 206/1000 [00:00<00:03, 250.45it/s]
|
87 |
23%|██▎ | 232/1000 [00:00<00:03, 252.96it/s]
|
88 |
26%|██▌ | 258/1000 [00:01<00:03, 245.56it/s]
|
89 |
28%|██▊ | 284/1000 [00:01<00:02, 248.57it/s]
|
90 |
31%|███ | 311/1000 [00:01<00:02, 254.08it/s]
|
91 |
34%|███▍ | 338/1000 [00:01<00:02, 256.67it/s]
|
92 |
36%|███▋ | 365/1000 [00:01<00:02, 259.60it/s]
|
93 |
39%|███▉ | 391/1000 [00:01<00:02, 259.35it/s]
|
94 |
42%|████▏ | 417/1000 [00:01<00:02, 256.98it/s]
|
95 |
44%|████▍ | 443/1000 [00:01<00:02, 256.66it/s]
|
96 |
47%|████▋ | 469/1000 [00:01<00:02, 255.95it/s]
|
97 |
50%|████▉ | 495/1000 [00:01<00:02, 251.12it/s]
|
98 |
52%|█████▏ | 521/1000 [00:02<00:01, 250.73it/s]
|
99 |
55%|█████▍ | 547/1000 [00:02<00:01, 253.19it/s]
|
100 |
57%|█████▋ | 573/1000 [00:02<00:01, 251.99it/s]
|
101 |
60%|█████▉ | 599/1000 [00:02<00:01, 249.39it/s]
|
102 |
62%|██████▎ | 625/1000 [00:02<00:01, 252.21it/s]
|
103 |
65%|██████▌ | 651/1000 [00:02<00:01, 250.49it/s]
|
104 |
68%|██████▊ | 677/1000 [00:02<00:01, 251.66it/s]
|
105 |
70%|███████ | 703/1000 [00:02<00:01, 253.86it/s]
|
106 |
73%|███████▎ | 729/1000 [00:02<00:01, 250.75it/s]
|
107 |
76%|███████▌ | 755/1000 [00:02<00:00, 253.05it/s]
|
108 |
78%|███████▊ | 782/1000 [00:03<00:00, 256.24it/s]
|
109 |
81%|████████ | 809/1000 [00:03<00:00, 256.31it/s]
|
110 |
84%|████████▎ | 836/1000 [00:03<00:00, 258.73it/s]
|
111 |
86%|████████▌ | 862/1000 [00:03<00:00, 258.60it/s]
|
112 |
89%|████████▉ | 889/1000 [00:03<00:00, 261.28it/s]
|
113 |
92%|█████████▏| 916/1000 [00:03<00:00, 259.29it/s]
|
114 |
94%|█████████▍| 942/1000 [00:03<00:00, 259.08it/s]
|
115 |
97%|█████████▋| 969/1000 [00:03<00:00, 260.24it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
0%| | 0/1000 [00:00<?, ?it/s]
|
117 |
3%|▎ | 26/1000 [00:00<00:03, 259.72it/s]
|
118 |
5%|▌ | 52/1000 [00:00<00:03, 255.71it/s]
|
119 |
8%|▊ | 78/1000 [00:00<00:03, 252.88it/s]
|
120 |
10%|█ | 104/1000 [00:00<00:03, 248.16it/s]
|
121 |
13%|█▎ | 131/1000 [00:00<00:03, 252.31it/s]
|
122 |
16%|█▌ | 157/1000 [00:00<00:03, 254.69it/s]
|
123 |
18%|█▊ | 183/1000 [00:00<00:03, 254.12it/s]
|
124 |
21%|██ | 209/1000 [00:00<00:03, 255.84it/s]
|
125 |
24%|██▎ | 235/1000 [00:00<00:02, 255.74it/s]
|
126 |
26%|██▌ | 261/1000 [00:01<00:02, 247.75it/s]
|
127 |
29%|██▉ | 288/1000 [00:01<00:02, 252.79it/s]
|
128 |
32%|███▏ | 315/1000 [00:01<00:02, 255.25it/s]
|
129 |
34%|███▍ | 342/1000 [00:01<00:02, 258.47it/s]
|
130 |
37%|███▋ | 369/1000 [00:01<00:02, 260.72it/s]
|
131 |
40%|███▉ | 396/1000 [00:01<00:02, 258.34it/s]
|
132 |
42%|████▏ | 422/1000 [00:01<00:02, 256.47it/s]
|
133 |
45%|████▍ | 448/1000 [00:01<00:02, 256.91it/s]
|
134 |
47%|████▋ | 474/1000 [00:01<00:02, 257.49it/s]
|
135 |
50%|█████ | 500/1000 [00:01<00:01, 256.52it/s]
|
136 |
53%|█████▎ | 526/1000 [00:02<00:01, 256.70it/s]
|
137 |
55%|█████▌ | 553/1000 [00:02<00:01, 259.00it/s]
|
138 |
58%|█████▊ | 579/1000 [00:02<00:01, 256.75it/s]
|
139 |
60%|██████ | 605/1000 [00:02<00:01, 254.54it/s]
|
140 |
63%|██████▎ | 631/1000 [00:02<00:01, 255.92it/s]
|
141 |
66%|██████▌ | 657/1000 [00:02<00:01, 255.64it/s]
|
142 |
68%|██████▊ | 684/1000 [00:02<00:01, 257.85it/s]
|
143 |
71%|███████ | 711/1000 [00:02<00:01, 259.11it/s]
|
144 |
74%|███████▎ | 737/1000 [00:02<00:01, 256.34it/s]
|
145 |
76%|███████▋ | 763/1000 [00:02<00:00, 255.83it/s]
|
146 |
79%|███████▉ | 790/1000 [00:03<00:00, 259.32it/s]
|
147 |
82%|████████▏ | 816/1000 [00:03<00:00, 256.05it/s]
|
148 |
84%|████████▍ | 842/1000 [00:03<00:00, 254.75it/s]
|
149 |
87%|████████▋ | 868/1000 [00:03<00:00, 255.26it/s]
|
150 |
90%|████████▉ | 895/1000 [00:03<00:00, 257.48it/s]
|
151 |
92%|█████████▏| 921/1000 [00:03<00:00, 254.59it/s]
|
152 |
95%|█████████▍| 947/1000 [00:03<00:00, 251.21it/s]
|
153 |
97%|█████████▋| 973/1000 [00:03<00:00, 253.31it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
0%| | 0/1000 [00:00<?, ?it/s]
|
155 |
3%|▎ | 26/1000 [00:00<00:03, 250.92it/s]
|
156 |
5%|▌ | 52/1000 [00:00<00:03, 247.89it/s]
|
157 |
8%|▊ | 77/1000 [00:00<00:03, 245.65it/s]
|
158 |
10%|█ | 102/1000 [00:00<00:03, 244.15it/s]
|
159 |
13%|█▎ | 129/1000 [00:00<00:03, 250.66it/s]
|
160 |
16%|█▌ | 155/1000 [00:00<00:03, 251.78it/s]
|
161 |
18%|█▊ | 181/1000 [00:00<00:03, 253.66it/s]
|
162 |
21%|██ | 207/1000 [00:00<00:03, 254.11it/s]
|
163 |
23%|██▎ | 234/1000 [00:00<00:02, 257.88it/s]
|
164 |
26%|██▌ | 260/1000 [00:01<00:02, 250.16it/s]
|
165 |
29%|██▊ | 287/1000 [00:01<00:02, 254.28it/s]
|
166 |
31%|███▏ | 314/1000 [00:01<00:02, 256.40it/s]
|
167 |
34%|███▍ | 341/1000 [00:01<00:02, 259.98it/s]
|
168 |
37%|███▋ | 368/1000 [00:01<00:02, 261.67it/s]
|
169 |
40%|███▉ | 395/1000 [00:01<00:02, 259.38it/s]
|
170 |
42%|████▏ | 421/1000 [00:01<00:02, 256.28it/s]
|
171 |
45%|████▍ | 447/1000 [00:01<00:02, 256.80it/s]
|
172 |
47%|████▋ | 473/1000 [00:01<00:02, 256.14it/s]
|
173 |
50%|████▉ | 499/1000 [00:01<00:01, 255.97it/s]
|
174 |
53%|█████▎ | 526/1000 [00:02<00:01, 256.70it/s]
|
175 |
55%|█████▌ | 553/1000 [00:02<00:01, 258.57it/s]
|
176 |
58%|█████▊ | 579/1000 [00:02<00:01, 256.37it/s]
|
177 |
60%|██████ | 605/1000 [00:02<00:01, 255.08it/s]
|
178 |
63%|██████▎ | 631/1000 [00:02<00:01, 256.40it/s]
|
179 |
66%|██████▌ | 657/1000 [00:02<00:01, 256.82it/s]
|
180 |
68%|██████▊ | 684/1000 [00:02<00:01, 258.64it/s]
|
181 |
71%|███████ | 711/1000 [00:02<00:01, 259.46it/s]
|
182 |
74%|███████▎ | 737/1000 [00:02<00:01, 256.67it/s]
|
183 |
76%|███████▋ | 763/1000 [00:02<00:00, 256.00it/s]
|
184 |
79%|███████▉ | 790/1000 [00:03<00:00, 259.26it/s]
|
185 |
82%|████████▏ | 816/1000 [00:03<00:00, 259.08it/s]
|
186 |
84%|████████▍ | 842/1000 [00:03<00:00, 259.35it/s]
|
187 |
87%|████████▋ | 869/1000 [00:03<00:00, 261.06it/s]
|
188 |
90%|████████▉ | 896/1000 [00:03<00:00, 261.72it/s]
|
189 |
92%|█████████▏| 923/1000 [00:03<00:00, 260.44it/s]
|
190 |
95%|█████████▌| 950/1000 [00:03<00:00, 258.71it/s]
|
191 |
98%|█████████▊| 977/1000 [00:03<00:00, 259.97it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
192 |
0%| | 0/1000 [00:00<?, ?it/s]
|
193 |
3%|▎ | 26/1000 [00:00<00:03, 259.99it/s]
|
194 |
5%|▌ | 52/1000 [00:00<00:03, 255.95it/s]
|
195 |
8%|▊ | 78/1000 [00:00<00:03, 249.28it/s]
|
196 |
10%|█ | 103/1000 [00:00<00:03, 245.71it/s]
|
197 |
13%|█▎ | 130/1000 [00:00<00:03, 252.40it/s]
|
198 |
16%|█▌ | 156/1000 [00:00<00:03, 253.49it/s]
|
199 |
18%|█▊ | 182/1000 [00:00<00:03, 252.51it/s]
|
200 |
21%|██ | 208/1000 [00:00<00:03, 254.65it/s]
|
201 |
24%|██▎ | 235/1000 [00:00<00:02, 258.60it/s]
|
202 |
26%|██▌ | 261/1000 [00:01<00:02, 250.83it/s]
|
203 |
29%|██▉ | 288/1000 [00:01<00:02, 254.85it/s]
|
204 |
32%|███▏ | 315/1000 [00:01<00:02, 256.65it/s]
|
205 |
34%|███▍ | 342/1000 [00:01<00:02, 260.40it/s]
|
206 |
37%|███▋ | 369/1000 [00:01<00:02, 262.21it/s]
|
207 |
40%|███▉ | 396/1000 [00:01<00:02, 259.29it/s]
|
208 |
42%|████▏ | 422/1000 [00:01<00:02, 257.42it/s]
|
209 |
45%|████▍ | 448/1000 [00:01<00:02, 256.97it/s]
|
210 |
47%|████▋ | 474/1000 [00:01<00:02, 257.48it/s]
|
211 |
50%|█████ | 500/1000 [00:01<00:01, 256.78it/s]
|
212 |
53%|█████▎ | 526/1000 [00:02<00:01, 256.97it/s]
|
213 |
55%|█████▌ | 552/1000 [00:02<00:01, 255.15it/s]
|
214 |
58%|█████▊ | 578/1000 [00:02<00:01, 251.98it/s]
|
215 |
60%|██████ | 604/1000 [00:02<00:01, 251.95it/s]
|
216 |
63%|██████▎ | 630/1000 [00:02<00:01, 254.11it/s]
|
217 |
66%|██████▌ | 656/1000 [00:02<00:01, 254.64it/s]
|
218 |
68%|██████▊ | 683/1000 [00:02<00:01, 256.90it/s]
|
219 |
71%|███████ | 709/1000 [00:02<00:01, 257.47it/s]
|
220 |
74%|███████▎ | 735/1000 [00:02<00:01, 255.32it/s]
|
221 |
76%|███████▌ | 761/1000 [00:02<00:00, 256.50it/s]
|
222 |
79%|███████▉ | 788/1000 [00:03<00:00, 258.35it/s]
|
223 |
81%|████████▏ | 814/1000 [00:03<00:00, 258.40it/s]
|
224 |
84%|████████▍ | 841/1000 [00:03<00:00, 260.33it/s]
|
225 |
87%|████████▋ | 868/1000 [00:03<00:00, 259.63it/s]
|
226 |
90%|████████▉ | 895/1000 [00:03<00:00, 260.58it/s]
|
227 |
92%|█████████▏| 922/1000 [00:03<00:00, 260.19it/s]
|
228 |
95%|█████████▍| 949/1000 [00:03<00:00, 258.39it/s]
|
229 |
98%|█████████▊| 976/1000 [00:03<00:00, 260.46it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
0%| | 0/1000 [00:00<?, ?it/s]
|
231 |
3%|▎ | 26/1000 [00:00<00:03, 259.68it/s]
|
232 |
5%|▌ | 52/1000 [00:00<00:03, 256.30it/s]
|
233 |
8%|▊ | 78/1000 [00:00<00:03, 253.21it/s]
|
234 |
10%|█ | 104/1000 [00:00<00:03, 248.01it/s]
|
235 |
13%|█▎ | 130/1000 [00:00<00:03, 250.73it/s]
|
236 |
16%|█▌ | 156/1000 [00:00<00:03, 249.88it/s]
|
237 |
18%|█▊ | 182/1000 [00:00<00:03, 248.64it/s]
|
238 |
21%|██ | 208/1000 [00:00<00:03, 250.24it/s]
|
239 |
24%|██▎ | 235/1000 [00:00<00:03, 254.62it/s]
|
240 |
26%|██▌ | 261/1000 [00:01<00:02, 248.15it/s]
|
241 |
29%|██▉ | 288/1000 [00:01<00:02, 253.05it/s]
|
242 |
31%|███▏ | 314/1000 [00:01<00:02, 248.03it/s]
|
243 |
34%|███▍ | 340/1000 [00:01<00:02, 251.08it/s]
|
244 |
37%|███▋ | 366/1000 [00:01<00:02, 252.42it/s]
|
245 |
39%|███▉ | 392/1000 [00:01<00:02, 253.34it/s]
|
246 |
42%|████▏ | 418/1000 [00:01<00:02, 254.02it/s]
|
247 |
44%|████▍ | 444/1000 [00:01<00:02, 254.59it/s]
|
248 |
47%|████▋ | 470/1000 [00:01<00:02, 254.32it/s]
|
249 |
50%|████▉ | 496/1000 [00:01<00:01, 254.00it/s]
|
250 |
52%|█████▏ | 522/1000 [00:02<00:01, 255.52it/s]
|
251 |
55%|█████▍ | 549/1000 [00:02<00:01, 257.62it/s]
|
252 |
57%|█████▊ | 575/1000 [00:02<00:01, 256.12it/s]
|
253 |
60%|██████ | 601/1000 [00:02<00:01, 253.50it/s]
|
254 |
63%|██████▎ | 628/1000 [00:02<00:01, 255.43it/s]
|
255 |
65%|██████▌ | 654/1000 [00:02<00:01, 255.49it/s]
|
256 |
68%|██████▊ | 681/1000 [00:02<00:01, 257.51it/s]
|
257 |
71%|███████ | 708/1000 [00:02<00:01, 258.81it/s]
|
258 |
73%|███████▎ | 734/1000 [00:02<00:01, 255.64it/s]
|
259 |
76%|███████▌ | 760/1000 [00:02<00:00, 256.11it/s]
|
260 |
79%|███████▊ | 787/1000 [00:03<00:00, 258.31it/s]
|
261 |
81%|████████▏ | 813/1000 [00:03<00:00, 258.37it/s]
|
262 |
84%|████████▍ | 840/1000 [00:03<00:00, 260.35it/s]
|
263 |
87%|████████▋ | 867/1000 [00:03<00:00, 259.74it/s]
|
264 |
89%|████████▉ | 894/1000 [00:03<00:00, 260.61it/s]
|
265 |
92%|█████████▏| 921/1000 [00:03<00:00, 257.96it/s]
|
266 |
95%|█████████▍| 947/1000 [00:03<00:00, 256.18it/s]
|
267 |
97%|█████████▋| 973/1000 [00:03<00:00, 255.56it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
0%| | 0/1000 [00:00<?, ?it/s]
|
269 |
3%|▎ | 26/1000 [00:00<00:03, 250.78it/s]
|
270 |
5%|▌ | 52/1000 [00:00<00:03, 252.12it/s]
|
271 |
8%|▊ | 78/1000 [00:00<00:03, 250.96it/s]
|
272 |
10%|█ | 104/1000 [00:00<00:03, 245.39it/s]
|
273 |
13%|█▎ | 131/1000 [00:00<00:03, 250.45it/s]
|
274 |
16%|█▌ | 157/1000 [00:00<00:03, 253.56it/s]
|
275 |
18%|█▊ | 183/1000 [00:00<00:03, 253.33it/s]
|
276 |
21%|██ | 209/1000 [00:00<00:03, 255.24it/s]
|
277 |
24%|██▎ | 236/1000 [00:00<00:02, 258.60it/s]
|
278 |
26%|██▌ | 262/1000 [00:01<00:02, 250.63it/s]
|
279 |
29%|██▉ | 288/1000 [00:01<00:02, 249.61it/s]
|
280 |
31%|███▏ | 314/1000 [00:01<00:02, 249.83it/s]
|
281 |
34%|███▍ | 340/1000 [00:01<00:02, 251.56it/s]
|
282 |
37%|███▋ | 366/1000 [00:01<00:02, 252.13it/s]
|
283 |
39%|███▉ | 392/1000 [00:01<00:02, 249.52it/s]
|
284 |
42%|████▏ | 417/1000 [00:01<00:02, 247.98it/s]
|
285 |
44%|████▍ | 442/1000 [00:01<00:02, 246.96it/s]
|
286 |
47%|████▋ | 467/1000 [00:01<00:02, 246.66it/s]
|
287 |
49%|████▉ | 492/1000 [00:01<00:02, 246.34it/s]
|
288 |
52%|█████▏ | 518/1000 [00:02<00:01, 249.40it/s]
|
289 |
54%|█████▍ | 544/1000 [00:02<00:01, 251.69it/s]
|
290 |
57%|█████▋ | 570/1000 [00:02<00:01, 254.00it/s]
|
291 |
60%|█████▉ | 596/1000 [00:02<00:01, 252.12it/s]
|
292 |
62%|██████▏ | 622/1000 [00:02<00:01, 254.30it/s]
|
293 |
65%|██████▍ | 648/1000 [00:02<00:01, 254.42it/s]
|
294 |
68%|██████▊ | 675/1000 [00:02<00:01, 257.31it/s]
|
295 |
70%|███████ | 702/1000 [00:02<00:01, 259.55it/s]
|
296 |
73%|███████▎ | 728/1000 [00:02<00:01, 254.82it/s]
|
297 |
75%|███████▌ | 754/1000 [00:02<00:00, 255.81it/s]
|
298 |
78%|███████▊ | 781/1000 [00:03<00:00, 258.24it/s]
|
299 |
81%|████████ | 808/1000 [00:03<00:00, 259.85it/s]
|
300 |
84%|████████▎ | 835/1000 [00:03<00:00, 260.66it/s]
|
301 |
86%|████████▌ | 862/1000 [00:03<00:00, 260.17it/s]
|
302 |
89%|████████▉ | 889/1000 [00:03<00:00, 262.89it/s]
|
303 |
92%|█████████▏| 916/1000 [00:03<00:00, 260.28it/s]
|
304 |
94%|█████████▍| 943/1000 [00:03<00:00, 259.79it/s]
|
305 |
97%|█████████▋| 970/1000 [00:03<00:00, 260.74it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
0%| | 0/1000 [00:00<?, ?it/s]
|
307 |
3%|▎ | 27/1000 [00:00<00:03, 261.26it/s]
|
308 |
5%|▌ | 54/1000 [00:00<00:03, 257.59it/s]
|
309 |
8%|▊ | 80/1000 [00:00<00:03, 254.35it/s]
|
310 |
11%|█ | 106/1000 [00:00<00:03, 249.01it/s]
|
311 |
13%|█▎ | 132/1000 [00:00<00:03, 252.63it/s]
|
312 |
16%|█▌ | 158/1000 [00:00<00:03, 253.86it/s]
|
313 |
18%|█▊ | 184/1000 [00:00<00:03, 254.50it/s]
|
314 |
21%|██ | 211/1000 [00:00<00:03, 256.51it/s]
|
315 |
24%|██▍ | 238/1000 [00:00<00:02, 259.62it/s]
|
316 |
26%|██▋ | 264/1000 [00:01<00:02, 251.99it/s]
|
317 |
29%|██▉ | 291/1000 [00:01<00:02, 256.40it/s]
|
318 |
32%|███▏ | 318/1000 [00:01<00:02, 258.30it/s]
|
319 |
35%|███▍ | 346/1000 [00:01<00:02, 262.01it/s]
|
320 |
37%|███▋ | 374/1000 [00:01<00:02, 264.83it/s]
|
321 |
40%|████ | 401/1000 [00:01<00:02, 261.11it/s]
|
322 |
43%|████▎ | 428/1000 [00:01<00:02, 258.81it/s]
|
323 |
45%|████▌ | 454/1000 [00:01<00:02, 256.21it/s]
|
324 |
48%|████▊ | 480/1000 [00:01<00:02, 254.49it/s]
|
325 |
51%|█████ | 506/1000 [00:01<00:01, 252.08it/s]
|
326 |
53%|█████▎ | 532/1000 [00:02<00:01, 250.79it/s]
|
327 |
56%|█████▌ | 558/1000 [00:02<00:01, 251.54it/s]
|
328 |
58%|█████▊ | 584/1000 [00:02<00:01, 251.94it/s]
|
329 |
61%|██████ | 610/1000 [00:02<00:01, 254.14it/s]
|
330 |
64%|██████▎ | 636/1000 [00:02<00:01, 253.80it/s]
|
331 |
66%|██████▌ | 662/1000 [00:02<00:01, 251.62it/s]
|
332 |
69%|██████▉ | 688/1000 [00:02<00:01, 250.71it/s]
|
333 |
71%|███████▏ | 714/1000 [00:02<00:01, 249.26it/s]
|
334 |
74%|███████▍ | 740/1000 [00:02<00:01, 249.89it/s]
|
335 |
76%|███████▋ | 765/1000 [00:03<00:00, 248.35it/s]
|
336 |
79%|███████▉ | 791/1000 [00:03<00:00, 250.34it/s]
|
337 |
82%|████████▏ | 817/1000 [00:03<00:00, 249.49it/s]
|
338 |
84%|████████▍ | 843/1000 [00:03<00:00, 250.29it/s]
|
339 |
87%|████████▋ | 870/1000 [00:03<00:00, 254.38it/s]
|
340 |
90%|████████▉ | 897/1000 [00:03<00:00, 256.46it/s]
|
341 |
92%|█████████▏| 923/1000 [00:03<00:00, 253.10it/s]
|
342 |
95%|█████████▍| 949/1000 [00:03<00:00, 251.05it/s]
|
343 |
98%|██���██████▊| 976/1000 [00:03<00:00, 256.35it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
344 |
0%| | 0/1000 [00:00<?, ?it/s]
|
345 |
3%|▎ | 27/1000 [00:00<00:03, 261.33it/s]
|
346 |
5%|▌ | 54/1000 [00:00<00:03, 256.82it/s]
|
347 |
8%|▊ | 80/1000 [00:00<00:03, 253.10it/s]
|
348 |
11%|█ | 106/1000 [00:00<00:03, 247.80it/s]
|
349 |
13%|█▎ | 132/1000 [00:00<00:03, 251.47it/s]
|
350 |
16%|█▌ | 158/1000 [00:00<00:03, 252.90it/s]
|
351 |
18%|█▊ | 184/1000 [00:00<00:03, 253.88it/s]
|
352 |
21%|██ | 210/1000 [00:00<00:03, 255.45it/s]
|
353 |
24%|██▎ | 237/1000 [00:00<00:02, 258.42it/s]
|
354 |
26%|██▋ | 263/1000 [00:01<00:02, 250.59it/s]
|
355 |
29%|██▉ | 290/1000 [00:01<00:02, 254.59it/s]
|
356 |
32%|███▏ | 317/1000 [00:01<00:02, 257.00it/s]
|
357 |
34%|███▍ | 344/1000 [00:01<00:02, 259.98it/s]
|
358 |
37%|███▋ | 371/1000 [00:01<00:02, 262.93it/s]
|
359 |
40%|███▉ | 398/1000 [00:01<00:02, 259.78it/s]
|
360 |
42%|████▎ | 425/1000 [00:01<00:02, 257.67it/s]
|
361 |
45%|████▌ | 451/1000 [00:01<00:02, 256.30it/s]
|
362 |
48%|████▊ | 477/1000 [00:01<00:02, 253.65it/s]
|
363 |
50%|█████ | 503/1000 [00:01<00:01, 251.94it/s]
|
364 |
53%|█████▎ | 529/1000 [00:02<00:01, 249.79it/s]
|
365 |
56%|█████▌ | 555/1000 [00:02<00:01, 250.30it/s]
|
366 |
58%|█████▊ | 581/1000 [00:02<00:01, 247.76it/s]
|
367 |
61%|██████ | 606/1000 [00:02<00:01, 246.30it/s]
|
368 |
63%|██████▎ | 631/1000 [00:02<00:01, 247.03it/s]
|
369 |
66%|██████▌ | 656/1000 [00:02<00:01, 247.29it/s]
|
370 |
68%|██████▊ | 682/1000 [00:02<00:01, 249.17it/s]
|
371 |
71%|███████ | 708/1000 [00:02<00:01, 249.65it/s]
|
372 |
73%|███████▎ | 733/1000 [00:02<00:01, 246.50it/s]
|
373 |
76%|███████▌ | 758/1000 [00:03<00:00, 245.91it/s]
|
374 |
78%|███████▊ | 784/1000 [00:03<00:00, 247.69it/s]
|
375 |
81%|████████ | 809/1000 [00:03<00:00, 247.11it/s]
|
376 |
84%|████████▎ | 835/1000 [00:03<00:00, 249.06it/s]
|
377 |
86%|████████▌ | 860/1000 [00:03<00:00, 248.86it/s]
|
378 |
89%|████████▊ | 886/1000 [00:03<00:00, 252.06it/s]
|
379 |
91%|█████████ | 912/1000 [00:03<00:00, 250.57it/s]
|
380 |
94%|█████████▍| 938/1000 [00:03<00:00, 250.15it/s]
|
381 |
96%|█████████▋| 964/1000 [00:03<00:00, 249.62it/s]
|
382 |
99%|█████████▉| 990/1000 [00:03<00:00, 252.20it/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:37:40] [setup] RAM Tracking...
|
11 |
+
[codecarbon INFO @ 17:37:40] [setup] GPU Tracking...
|
12 |
+
[codecarbon INFO @ 17:37:40] Tracking Nvidia GPU via pynvml
|
13 |
+
[codecarbon DEBUG @ 17:37:40] GPU available. Starting setup
|
14 |
+
[codecarbon INFO @ 17:37:40] [setup] CPU Tracking...
|
15 |
+
[codecarbon DEBUG @ 17:37:40] Not using PowerGadget, an exception occurred while instantiating IntelPowerGadget : Platform not supported by Intel Power Gadget
|
16 |
+
[codecarbon DEBUG @ 17:37:40] 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:37:40] Not using PowerMetrics, an exception occurred while instantiating Powermetrics : Platform not supported by Powermetrics
|
18 |
+
[codecarbon WARNING @ 17:37:40] No CPU tracking mode found. Falling back on CPU constant mode.
|
19 |
+
[codecarbon WARNING @ 17:37:42] We saw that you have a AMD EPYC 7R32 but we don't know it. Please contact us.
|
20 |
+
[codecarbon INFO @ 17:37:42] CPU Model on constant consumption mode: AMD EPYC 7R32
|
21 |
+
[codecarbon INFO @ 17:37:42] >>> Tracker's metadata:
|
22 |
+
[codecarbon INFO @ 17:37:42] Platform system: Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35
|
23 |
+
[codecarbon INFO @ 17:37:42] Python version: 3.9.20
|
24 |
+
[codecarbon INFO @ 17:37:42] CodeCarbon version: 2.5.1
|
25 |
+
[codecarbon INFO @ 17:37:42] Available RAM : 186.705 GB
|
26 |
+
[codecarbon INFO @ 17:37:42] CPU count: 48
|
27 |
+
[codecarbon INFO @ 17:37:42] CPU model: AMD EPYC 7R32
|
28 |
+
[codecarbon INFO @ 17:37:42] GPU count: 1
|
29 |
+
[codecarbon INFO @ 17:37:42] GPU model: 1 x NVIDIA A10G
|
30 |
+
[codecarbon DEBUG @ 17:37:43] Not running on AWS
|
31 |
+
[codecarbon DEBUG @ 17:37:44] Not running on Azure
|
32 |
+
[codecarbon DEBUG @ 17:37:45] Not running on GCP
|
33 |
+
[codecarbon INFO @ 17:37:45] Saving emissions data to file /runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-17-37-33/codecarbon.csv
|
34 |
+
[codecarbon DEBUG @ 17:37:45] EmissionsData(timestamp='2024-10-08T17:37:45', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=0.002186324003560003, 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:37:45] Energy consumed for RAM : 0.000000 kWh. RAM Power : 0.27330780029296875 W
|
38 |
+
[codecarbon DEBUG @ 17:37:45] RAM : 0.27 W during 0.42 s [measurement time: 0.0005]
|
39 |
+
[codecarbon INFO @ 17:37:45] Energy consumed for all GPUs : 0.000007 kWh. Total GPU Power : 64.11599605880454 W
|
40 |
+
[codecarbon DEBUG @ 17:37:45] GPU : 64.12 W during 0.42 s [measurement time: 0.0022]
|
41 |
+
[codecarbon INFO @ 17:37:45] Energy consumed for all CPUs : 0.000005 kWh. Total CPU Power : 42.5 W
|
42 |
+
[codecarbon DEBUG @ 17:37:45] CPU : 42.50 W during 0.42 s [measurement time: 0.0000]
|
43 |
+
[codecarbon INFO @ 17:37:45] 0.000013 kWh of electricity used since the beginning.
|
44 |
+
[codecarbon DEBUG @ 17:37:45] last_duration=0.4202911949978443
|
45 |
+
------------------------
|
46 |
+
[codecarbon DEBUG @ 17:37:45] EmissionsData(timestamp='2024-10-08T17:37:45', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=0.4234626850011409, emissions=4.625094804077252e-06, emissions_rate=1.0922083498490052e-05, cpu_power=42.5, gpu_power=64.11599605880454, ram_power=0.27330780029296875, cpu_energy=4.9979329326207435e-06, gpu_energy=7.499728221782576e-06, ram_energy=3.1908241179319e-08, energy_consumed=1.2529569395582638e-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:37:46] EmissionsData(timestamp='2024-10-08T17:37:46', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=0.0034372650043223985, emissions=4.625094804077252e-06, emissions_rate=0.0013455741114697716, cpu_power=42.5, gpu_power=64.11599605880454, ram_power=0.27330780029296875, cpu_energy=4.9979329326207435e-06, gpu_energy=7.499728221782576e-06, ram_energy=3.1908241179319e-08, energy_consumed=1.2529569395582638e-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, 236.80it/s]
|
51 |
5%|▍ | 49/1000 [00:00<00:03, 238.84it/s]
|
52 |
7%|▋ | 74/1000 [00:00<00:03, 238.52it/s]
|
53 |
10%|▉ | 99/1000 [00:00<00:03, 239.95it/s]
|
54 |
12%|█▎ | 125/1000 [00:00<00:03, 245.57it/s]
|
55 |
15%|█▌ | 150/1000 [00:00<00:03, 246.76it/s]
|
56 |
18%|█▊ | 177/1000 [00:00<00:03, 251.99it/s]
|
57 |
20%|██ | 203/1000 [00:00<00:03, 251.98it/s]
|
58 |
23%|██▎ | 230/1000 [00:00<00:03, 254.62it/s]
|
59 |
26%|██▌ | 256/1000 [00:01<00:02, 249.16it/s]
|
60 |
28%|██▊ | 282/1000 [00:01<00:02, 251.78it/s]
|
61 |
31%|███ | 308/1000 [00:01<00:02, 253.69it/s]
|
62 |
33%|███▎ | 334/1000 [00:01<00:02, 252.84it/s]
|
63 |
36%|███▌ | 360/1000 [00:01<00:02, 252.64it/s]
|
64 |
39%|███▊ | 386/1000 [00:01<00:02, 252.26it/s]
|
65 |
41%|████ | 412/1000 [00:01<00:02, 248.48it/s]
|
66 |
44%|████▎ | 437/1000 [00:01<00:02, 248.26it/s]
|
67 |
46%|████▌ | 462/1000 [00:01<00:02, 247.35it/s]
|
68 |
49%|████▉ | 488/1000 [00:01<00:02, 248.52it/s]
|
69 |
51%|█████▏ | 513/1000 [00:02<00:01, 247.14it/s]
|
70 |
54%|█████▍ | 539/1000 [00:02<00:01, 247.03it/s]
|
71 |
56%|█████▋ | 565/1000 [00:02<00:01, 247.91it/s]
|
72 |
59%|█████▉ | 590/1000 [00:02<00:01, 247.49it/s]
|
73 |
62%|██████▏ | 616/1000 [00:02<00:01, 248.52it/s]
|
74 |
64%|██████▍ | 641/1000 [00:02<00:01, 248.80it/s]
|
75 |
67%|██████▋ | 668/1000 [00:02<00:01, 252.56it/s]
|
76 |
70%|██████▉ | 695/1000 [00:02<00:01, 255.50it/s]
|
77 |
72%|███████▏ | 721/1000 [00:02<00:01, 253.14it/s]
|
78 |
75%|███████▍ | 747/1000 [00:02<00:00, 253.32it/s]
|
79 |
77%|███████▋ | 773/1000 [00:03<00:00, 253.66it/s]
|
80 |
80%|███████▉ | 799/1000 [00:03<00:00, 254.22it/s]
|
81 |
82%|████████▎ | 825/1000 [00:03<00:00, 255.05it/s]
|
82 |
85%|████████▌ | 851/1000 [00:03<00:00, 256.50it/s]
|
83 |
88%|████████▊ | 878/1000 [00:03<00:00, 258.20it/s]
|
84 |
90%|█████████ | 904/1000 [00:03<00:00, 258.24it/s]
|
85 |
93%|█████████▎| 931/1000 [00:03<00:00, 259.78it/s]
|
86 |
96%|█████████▌| 957/1000 [00:03<00:00, 257.94it/s]
|
87 |
98%|█████████▊| 984/1000 [00:03<00:00, 259.40it/s]
|
88 |
+
[codecarbon WARNING @ 17:37:50] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
89 |
+
[codecarbon INFO @ 17:37:50] Energy consumed for RAM : 0.000000 kWh. RAM Power : 0.3439607620239258 W
|
90 |
+
[codecarbon DEBUG @ 17:37:50] RAM : 0.34 W during 3.97 s [measurement time: 0.0004]
|
91 |
+
[codecarbon INFO @ 17:37:50] Energy consumed for all GPUs : 0.000186 kWh. Total GPU Power : 161.44397794678872 W
|
92 |
+
[codecarbon DEBUG @ 17:37:50] GPU : 161.44 W during 3.98 s [measurement time: 0.0023]
|
93 |
+
[codecarbon INFO @ 17:37:50] Energy consumed for all CPUs : 0.000052 kWh. Total CPU Power : 42.5 W
|
94 |
+
[codecarbon DEBUG @ 17:37:50] CPU : 42.50 W during 3.98 s [measurement time: 0.0000]
|
95 |
+
[codecarbon INFO @ 17:37:50] 0.000238 kWh of electricity used since the beginning.
|
96 |
+
[codecarbon DEBUG @ 17:37:50] last_duration=3.9742983460018877
|
97 |
+
------------------------
|
98 |
+
[codecarbon DEBUG @ 17:37:50] EmissionsData(timestamp='2024-10-08T17:37:50', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=3.9775514510038192, emissions=8.790327114163085e-05, emissions_rate=2.2099845149569743e-05, cpu_power=42.5, gpu_power=161.44397794678872, ram_power=0.3439607620239258, cpu_energy=5.195395079718361e-05, gpu_energy=0.00018576792639213302, ram_energy=4.1164926226009786e-07, energy_consumed=0.00023813352645157674, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
99 |
+
[codecarbon DEBUG @ 17:37:50] EmissionsData(timestamp='2024-10-08T17:37:50', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=0.0020054440028616227, emissions=8.790327114163085e-05, emissions_rate=0.04383232392238291, cpu_power=42.5, gpu_power=161.44397794678872, ram_power=0.3439607620239258, cpu_energy=5.195395079718361e-05, gpu_energy=0.00018576792639213302, ram_energy=4.1164926226009786e-07, energy_consumed=0.00023813352645157674, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
100 |
+
|
101 |
0%| | 0/1000 [00:00<?, ?it/s]
|
102 |
3%|▎ | 26/1000 [00:00<00:03, 251.36it/s]
|
103 |
5%|▌ | 52/1000 [00:00<00:03, 247.39it/s]
|
104 |
8%|▊ | 77/1000 [00:00<00:03, 245.73it/s]
|
105 |
10%|█ | 102/1000 [00:00<00:03, 244.35it/s]
|
106 |
13%|█▎ | 129/1000 [00:00<00:03, 251.52it/s]
|
107 |
16%|█▌ | 155/1000 [00:00<00:03, 252.89it/s]
|
108 |
18%|█▊ | 181/1000 [00:00<00:03, 254.51it/s]
|
109 |
21%|██ | 207/1000 [00:00<00:03, 254.95it/s]
|
110 |
23%|██▎ | 233/1000 [00:00<00:02, 256.21it/s]
|
111 |
26%|██▌ | 259/1000 [00:01<00:02, 247.41it/s]
|
112 |
28%|██▊ | 285/1000 [00:01<00:02, 249.17it/s]
|
113 |
31%|███ | 311/1000 [00:01<00:02, 250.91it/s]
|
114 |
34%|███▎ | 337/1000 [00:01<00:02, 251.02it/s]
|
115 |
36%|███▋ | 363/1000 [00:01<00:02, 252.02it/s]
|
116 |
39%|███▉ | 389/1000 [00:01<00:02, 249.45it/s]
|
117 |
41%|████▏ | 414/1000 [00:01<00:02, 248.99it/s]
|
118 |
44%|████▍ | 440/1000 [00:01<00:02, 251.18it/s]
|
119 |
47%|████▋ | 466/1000 [00:01<00:02, 252.12it/s]
|
120 |
49%|████▉ | 492/1000 [00:01<00:02, 253.32it/s]
|
121 |
52%|█████▏ | 519/1000 [00:02<00:01, 255.47it/s]
|
122 |
55%|█████▍ | 545/1000 [00:02<00:01, 253.59it/s]
|
123 |
57%|█████▋ | 571/1000 [00:02<00:01, 252.65it/s]
|
124 |
60%|█████▉ | 597/1000 [00:02<00:01, 251.10it/s]
|
125 |
62%|██████▏ | 624/1000 [00:02<00:01, 254.18it/s]
|
126 |
65%|██████▌ | 650/1000 [00:02<00:01, 253.17it/s]
|
127 |
68%|██████▊ | 677/1000 [00:02<00:01, 254.33it/s]
|
128 |
70%|███████ | 703/1000 [00:02<00:01, 254.71it/s]
|
129 |
73%|███████▎ | 729/1000 [00:02<00:01, 250.94it/s]
|
130 |
76%|███████▌ | 755/1000 [00:02<00:00, 253.55it/s]
|
131 |
78%|███████▊ | 781/1000 [00:03<00:00, 254.26it/s]
|
132 |
81%|████████ | 807/1000 [00:03<00:00, 254.09it/s]
|
133 |
83%|████████▎ | 834/1000 [00:03<00:00, 256.11it/s]
|
134 |
86%|████████▌ | 860/1000 [00:03<00:00, 256.87it/s]
|
135 |
89%|████████▊ | 886/1000 [00:03<00:00, 257.14it/s]
|
136 |
91%|█████████ | 912/1000 [00:03<00:00, 254.13it/s]
|
137 |
94%|█████████▍| 938/1000 [00:03<00:00, 252.48it/s]
|
138 |
96%|█████████▋| 964/1000 [00:03<00:00, 253.28it/s]
|
139 |
99%|█████████▉| 990/1000 [00:03<00:00, 251.83it/s]
|
140 |
+
[codecarbon WARNING @ 17:37:54] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
141 |
+
[codecarbon INFO @ 17:37:54] Energy consumed for RAM : 0.000001 kWh. RAM Power : 0.3440437316894531 W
|
142 |
+
[codecarbon DEBUG @ 17:37:54] RAM : 0.34 W during 3.96 s [measurement time: 0.0004]
|
143 |
+
[codecarbon INFO @ 17:37:54] Energy consumed for all GPUs : 0.000370 kWh. Total GPU Power : 167.21059015879567 W
|
144 |
+
[codecarbon DEBUG @ 17:37:54] GPU : 167.21 W during 3.97 s [measurement time: 0.0023]
|
145 |
+
[codecarbon INFO @ 17:37:54] Energy consumed for all CPUs : 0.000099 kWh. Total CPU Power : 42.5 W
|
146 |
+
[codecarbon DEBUG @ 17:37:54] CPU : 42.50 W during 3.97 s [measurement time: 0.0000]
|
147 |
+
[codecarbon INFO @ 17:37:54] 0.000470 kWh of electricity used since the beginning.
|
148 |
+
[codecarbon DEBUG @ 17:37:54] last_duration=3.96440924199851
|
149 |
+
------------------------
|
150 |
+
[codecarbon DEBUG @ 17:37:54] EmissionsData(timestamp='2024-10-08T17:37:54', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=3.9676029440015554, emissions=0.0001733175164626588, emissions_rate=4.368318072872941e-05, cpu_power=42.5, gpu_power=167.21059015879567, ram_power=0.3440437316894531, cpu_energy=9.879252491733598e-05, gpu_energy=0.0003699411292861221, ram_energy=7.905268089076112e-07, energy_consumed=0.0004695241810123657, 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)
|
151 |
+
[codecarbon DEBUG @ 17:37:54] EmissionsData(timestamp='2024-10-08T17:37:54', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=0.005237747995124664, emissions=0.0001733175164626588, emissions_rate=0.03309008310899724, cpu_power=42.5, gpu_power=167.21059015879567, ram_power=0.3440437316894531, cpu_energy=9.879252491733598e-05, gpu_energy=0.0003699411292861221, ram_energy=7.905268089076112e-07, energy_consumed=0.0004695241810123657, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
152 |
+
|
153 |
0%| | 0/1000 [00:00<?, ?it/s]
|
154 |
2%|▎ | 25/1000 [00:00<00:04, 242.17it/s]
|
155 |
5%|▌ | 51/1000 [00:00<00:03, 247.77it/s]
|
156 |
8%|▊ | 76/1000 [00:00<00:03, 248.29it/s]
|
157 |
10%|█ | 101/1000 [00:00<00:03, 245.79it/s]
|
158 |
13%|█▎ | 128/1000 [00:00<00:03, 251.06it/s]
|
159 |
15%|█▌ | 154/1000 [00:00<00:03, 252.34it/s]
|
160 |
18%|█▊ | 180/1000 [00:00<00:03, 251.97it/s]
|
161 |
21%|██ | 206/1000 [00:00<00:03, 250.45it/s]
|
162 |
23%|██▎ | 232/1000 [00:00<00:03, 252.96it/s]
|
163 |
26%|██▌ | 258/1000 [00:01<00:03, 245.56it/s]
|
164 |
28%|██▊ | 284/1000 [00:01<00:02, 248.57it/s]
|
165 |
31%|███ | 311/1000 [00:01<00:02, 254.08it/s]
|
166 |
34%|███▍ | 338/1000 [00:01<00:02, 256.67it/s]
|
167 |
36%|███▋ | 365/1000 [00:01<00:02, 259.60it/s]
|
168 |
39%|███▉ | 391/1000 [00:01<00:02, 259.35it/s]
|
169 |
42%|████▏ | 417/1000 [00:01<00:02, 256.98it/s]
|
170 |
44%|████▍ | 443/1000 [00:01<00:02, 256.66it/s]
|
171 |
47%|████▋ | 469/1000 [00:01<00:02, 255.95it/s]
|
172 |
50%|████▉ | 495/1000 [00:01<00:02, 251.12it/s]
|
173 |
52%|█████▏ | 521/1000 [00:02<00:01, 250.73it/s]
|
174 |
55%|█████▍ | 547/1000 [00:02<00:01, 253.19it/s]
|
175 |
57%|█████▋ | 573/1000 [00:02<00:01, 251.99it/s]
|
176 |
60%|█████▉ | 599/1000 [00:02<00:01, 249.39it/s]
|
177 |
62%|██████▎ | 625/1000 [00:02<00:01, 252.21it/s]
|
178 |
65%|██████▌ | 651/1000 [00:02<00:01, 250.49it/s]
|
179 |
68%|██████▊ | 677/1000 [00:02<00:01, 251.66it/s]
|
180 |
70%|███████ | 703/1000 [00:02<00:01, 253.86it/s]
|
181 |
73%|███████▎ | 729/1000 [00:02<00:01, 250.75it/s]
|
182 |
76%|███████▌ | 755/1000 [00:02<00:00, 253.05it/s]
|
183 |
78%|███████▊ | 782/1000 [00:03<00:00, 256.24it/s]
|
184 |
81%|████████ | 809/1000 [00:03<00:00, 256.31it/s]
|
185 |
84%|████████▎ | 836/1000 [00:03<00:00, 258.73it/s]
|
186 |
86%|████████▌ | 862/1000 [00:03<00:00, 258.60it/s]
|
187 |
89%|████████▉ | 889/1000 [00:03<00:00, 261.28it/s]
|
188 |
92%|█████████▏| 916/1000 [00:03<00:00, 259.29it/s]
|
189 |
94%|█████████▍| 942/1000 [00:03<00:00, 259.08it/s]
|
190 |
97%|█████████▋| 969/1000 [00:03<00:00, 260.24it/s]
|
191 |
+
[codecarbon WARNING @ 17:37:58] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
192 |
+
[codecarbon INFO @ 17:37:58] Energy consumed for RAM : 0.000001 kWh. RAM Power : 0.34405088424682617 W
|
193 |
+
[codecarbon DEBUG @ 17:37:58] RAM : 0.34 W during 3.94 s [measurement time: 0.0004]
|
194 |
+
[codecarbon INFO @ 17:37:58] Energy consumed for all GPUs : 0.000550 kWh. Total GPU Power : 165.02422403602208 W
|
195 |
+
[codecarbon DEBUG @ 17:37:58] GPU : 165.02 W during 3.94 s [measurement time: 0.0070]
|
196 |
+
[codecarbon INFO @ 17:37:58] Energy consumed for all CPUs : 0.000145 kWh. Total CPU Power : 42.5 W
|
197 |
+
[codecarbon DEBUG @ 17:37:58] CPU : 42.50 W during 3.95 s [measurement time: 0.0000]
|
198 |
+
[codecarbon INFO @ 17:37:58] 0.000697 kWh of electricity used since the beginning.
|
199 |
+
[codecarbon DEBUG @ 17:37:58] last_duration=3.9375561119959457
|
200 |
+
------------------------
|
201 |
+
[codecarbon DEBUG @ 17:37:58] EmissionsData(timestamp='2024-10-08T17:37:58', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=3.9454774929981795, emissions=0.0002572908462865598, emissions_rate=6.52115863651889e-05, cpu_power=42.5, gpu_power=165.02422403602208, ram_power=0.34405088424682617, cpu_energy=0.00014536988433330104, gpu_energy=0.0005504746070459365, ram_energy=1.16684567567956e-06, energy_consumed=0.0006970113370549173, 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)
|
202 |
+
[codecarbon DEBUG @ 17:37:58] EmissionsData(timestamp='2024-10-08T17:37:58', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=0.0033903829971677624, emissions=0.0002572908462865598, emissions_rate=0.0758884310420073, cpu_power=42.5, gpu_power=165.02422403602208, ram_power=0.34405088424682617, cpu_energy=0.00014536988433330104, gpu_energy=0.0005504746070459365, ram_energy=1.16684567567956e-06, energy_consumed=0.0006970113370549173, 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)
|
203 |
+
|
204 |
0%| | 0/1000 [00:00<?, ?it/s]
|
205 |
3%|▎ | 26/1000 [00:00<00:03, 259.72it/s]
|
206 |
5%|▌ | 52/1000 [00:00<00:03, 255.71it/s]
|
207 |
8%|▊ | 78/1000 [00:00<00:03, 252.88it/s]
|
208 |
10%|█ | 104/1000 [00:00<00:03, 248.16it/s]
|
209 |
13%|█▎ | 131/1000 [00:00<00:03, 252.31it/s]
|
210 |
16%|█▌ | 157/1000 [00:00<00:03, 254.69it/s]
|
211 |
18%|█▊ | 183/1000 [00:00<00:03, 254.12it/s]
|
212 |
21%|██ | 209/1000 [00:00<00:03, 255.84it/s]
|
213 |
24%|██▎ | 235/1000 [00:00<00:02, 255.74it/s]
|
214 |
26%|██▌ | 261/1000 [00:01<00:02, 247.75it/s]
|
215 |
29%|██▉ | 288/1000 [00:01<00:02, 252.79it/s]
|
216 |
32%|███▏ | 315/1000 [00:01<00:02, 255.25it/s]
|
217 |
34%|███▍ | 342/1000 [00:01<00:02, 258.47it/s]
|
218 |
37%|███▋ | 369/1000 [00:01<00:02, 260.72it/s]
|
219 |
40%|███▉ | 396/1000 [00:01<00:02, 258.34it/s]
|
220 |
42%|████▏ | 422/1000 [00:01<00:02, 256.47it/s]
|
221 |
45%|████▍ | 448/1000 [00:01<00:02, 256.91it/s]
|
222 |
47%|████▋ | 474/1000 [00:01<00:02, 257.49it/s]
|
223 |
50%|█████ | 500/1000 [00:01<00:01, 256.52it/s]
|
224 |
53%|█████▎ | 526/1000 [00:02<00:01, 256.70it/s]
|
225 |
55%|█████▌ | 553/1000 [00:02<00:01, 259.00it/s]
|
226 |
58%|█████▊ | 579/1000 [00:02<00:01, 256.75it/s]
|
227 |
60%|██████ | 605/1000 [00:02<00:01, 254.54it/s]
|
228 |
63%|██████▎ | 631/1000 [00:02<00:01, 255.92it/s]
|
229 |
66%|██████▌ | 657/1000 [00:02<00:01, 255.64it/s]
|
230 |
68%|██████▊ | 684/1000 [00:02<00:01, 257.85it/s]
|
231 |
71%|███████ | 711/1000 [00:02<00:01, 259.11it/s]
|
232 |
74%|███████▎ | 737/1000 [00:02<00:01, 256.34it/s]
|
233 |
76%|███████▋ | 763/1000 [00:02<00:00, 255.83it/s]
|
234 |
79%|███████▉ | 790/1000 [00:03<00:00, 259.32it/s]
|
235 |
82%|████████▏ | 816/1000 [00:03<00:00, 256.05it/s]
|
236 |
84%|████████▍ | 842/1000 [00:03<00:00, 254.75it/s]
|
237 |
87%|████████▋ | 868/1000 [00:03<00:00, 255.26it/s]
|
238 |
90%|████████▉ | 895/1000 [00:03<00:00, 257.48it/s]
|
239 |
92%|█████████▏| 921/1000 [00:03<00:00, 254.59it/s]
|
240 |
95%|█████████▍| 947/1000 [00:03<00:00, 251.21it/s]
|
241 |
97%|█████████▋| 973/1000 [00:03<00:00, 253.31it/s]
|
242 |
+
[codecarbon WARNING @ 17:38:01] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
243 |
+
[codecarbon INFO @ 17:38:01] Energy consumed for RAM : 0.000002 kWh. RAM Power : 0.34405088424682617 W
|
244 |
+
[codecarbon DEBUG @ 17:38:01] RAM : 0.34 W during 3.92 s [measurement time: 0.0004]
|
245 |
+
[codecarbon INFO @ 17:38:01] Energy consumed for all GPUs : 0.000737 kWh. Total GPU Power : 170.89968410172335 W
|
246 |
+
[codecarbon DEBUG @ 17:38:01] GPU : 170.90 W during 3.92 s [measurement time: 0.0023]
|
247 |
+
[codecarbon INFO @ 17:38:01] Energy consumed for all CPUs : 0.000192 kWh. Total CPU Power : 42.5 W
|
248 |
+
[codecarbon DEBUG @ 17:38:01] CPU : 42.50 W during 3.92 s [measurement time: 0.0000]
|
249 |
+
[codecarbon INFO @ 17:38:01] 0.000930 kWh of electricity used since the beginning.
|
250 |
+
[codecarbon DEBUG @ 17:38:01] last_duration=3.9191808239993406
|
251 |
+
------------------------
|
252 |
+
[codecarbon DEBUG @ 17:38:01] EmissionsData(timestamp='2024-10-08T17:38:01', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=3.922366005994263, emissions=0.0003432133425656571, emissions_rate=8.750161051802648e-05, cpu_power=42.5, gpu_power=170.89968410172335, ram_power=0.34405088424682617, cpu_energy=0.00019167436568746376, gpu_energy=0.0007365630892499642, ram_energy=1.541409135873614e-06, energy_consumed=0.0009297788640733017, 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)
|
253 |
+
[codecarbon DEBUG @ 17:38:01] EmissionsData(timestamp='2024-10-08T17:38:01', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=0.002048575996013824, emissions=0.0003432133425656571, emissions_rate=0.1675375203231372, cpu_power=42.5, gpu_power=170.89968410172335, ram_power=0.34405088424682617, cpu_energy=0.00019167436568746376, gpu_energy=0.0007365630892499642, ram_energy=1.541409135873614e-06, energy_consumed=0.0009297788640733017, 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)
|
254 |
+
|
255 |
0%| | 0/1000 [00:00<?, ?it/s]
|
256 |
3%|▎ | 26/1000 [00:00<00:03, 250.92it/s]
|
257 |
5%|▌ | 52/1000 [00:00<00:03, 247.89it/s]
|
258 |
8%|▊ | 77/1000 [00:00<00:03, 245.65it/s]
|
259 |
10%|█ | 102/1000 [00:00<00:03, 244.15it/s]
|
260 |
13%|█▎ | 129/1000 [00:00<00:03, 250.66it/s]
|
261 |
16%|█▌ | 155/1000 [00:00<00:03, 251.78it/s]
|
262 |
18%|█▊ | 181/1000 [00:00<00:03, 253.66it/s]
|
263 |
21%|██ | 207/1000 [00:00<00:03, 254.11it/s]
|
264 |
23%|██▎ | 234/1000 [00:00<00:02, 257.88it/s]
|
265 |
26%|██▌ | 260/1000 [00:01<00:02, 250.16it/s]
|
266 |
29%|██▊ | 287/1000 [00:01<00:02, 254.28it/s]
|
267 |
31%|███▏ | 314/1000 [00:01<00:02, 256.40it/s]
|
268 |
34%|███▍ | 341/1000 [00:01<00:02, 259.98it/s]
|
269 |
37%|███▋ | 368/1000 [00:01<00:02, 261.67it/s]
|
270 |
40%|███▉ | 395/1000 [00:01<00:02, 259.38it/s]
|
271 |
42%|████▏ | 421/1000 [00:01<00:02, 256.28it/s]
|
272 |
45%|████▍ | 447/1000 [00:01<00:02, 256.80it/s]
|
273 |
47%|████▋ | 473/1000 [00:01<00:02, 256.14it/s]
|
274 |
50%|████▉ | 499/1000 [00:01<00:01, 255.97it/s]
|
275 |
53%|█████▎ | 526/1000 [00:02<00:01, 256.70it/s]
|
276 |
55%|█████▌ | 553/1000 [00:02<00:01, 258.57it/s]
|
277 |
58%|█████▊ | 579/1000 [00:02<00:01, 256.37it/s]
|
278 |
60%|██████ | 605/1000 [00:02<00:01, 255.08it/s]
|
279 |
63%|██████▎ | 631/1000 [00:02<00:01, 256.40it/s]
|
280 |
66%|██████▌ | 657/1000 [00:02<00:01, 256.82it/s]
|
281 |
68%|██████▊ | 684/1000 [00:02<00:01, 258.64it/s]
|
282 |
71%|███████ | 711/1000 [00:02<00:01, 259.46it/s]
|
283 |
74%|███████▎ | 737/1000 [00:02<00:01, 256.67it/s]
|
284 |
76%|███████▋ | 763/1000 [00:02<00:00, 256.00it/s]
|
285 |
79%|███████▉ | 790/1000 [00:03<00:00, 259.26it/s]
|
286 |
82%|████████▏ | 816/1000 [00:03<00:00, 259.08it/s]
|
287 |
84%|████████▍ | 842/1000 [00:03<00:00, 259.35it/s]
|
288 |
87%|████████▋ | 869/1000 [00:03<00:00, 261.06it/s]
|
289 |
90%|████████▉ | 896/1000 [00:03<00:00, 261.72it/s]
|
290 |
92%|█████████▏| 923/1000 [00:03<00:00, 260.44it/s]
|
291 |
95%|█████████▌| 950/1000 [00:03<00:00, 258.71it/s]
|
292 |
98%|█████████▊| 977/1000 [00:03<00:00, 259.97it/s]
|
293 |
+
[codecarbon WARNING @ 17:38:05] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
294 |
+
[codecarbon INFO @ 17:38:05] Energy consumed for RAM : 0.000002 kWh. RAM Power : 0.34405088424682617 W
|
295 |
+
[codecarbon DEBUG @ 17:38:05] RAM : 0.34 W during 3.90 s [measurement time: 0.0004]
|
296 |
+
[codecarbon INFO @ 17:38:05] Energy consumed for all GPUs : 0.000919 kWh. Total GPU Power : 168.31849930846278 W
|
297 |
+
[codecarbon DEBUG @ 17:38:05] GPU : 168.32 W during 3.90 s [measurement time: 0.0022]
|
298 |
+
[codecarbon INFO @ 17:38:05] Energy consumed for all CPUs : 0.000238 kWh. Total CPU Power : 42.5 W
|
299 |
+
[codecarbon DEBUG @ 17:38:05] CPU : 42.50 W during 3.90 s [measurement time: 0.0000]
|
300 |
+
[codecarbon INFO @ 17:38:05] 0.001159 kWh of electricity used since the beginning.
|
301 |
+
[codecarbon DEBUG @ 17:38:05] last_duration=3.898909368996101
|
302 |
+
------------------------
|
303 |
+
[codecarbon DEBUG @ 17:38:05] EmissionsData(timestamp='2024-10-08T17:38:05', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=3.9020374169995193, emissions=0.00042765901837953145, emissions_rate=0.00010959890249037664, cpu_power=42.5, gpu_power=168.31849930846278, ram_power=0.34405088424682617, cpu_energy=0.00023773891036380014, gpu_energy=0.0009188926795578034, ram_energy=1.914034637142231e-06, energy_consumed=0.0011585456245587458, 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)
|
304 |
+
[codecarbon DEBUG @ 17:38:05] EmissionsData(timestamp='2024-10-08T17:38:05', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=0.002029044997470919, emissions=0.00042765901837953145, emissions_rate=0.21076862214124495, cpu_power=42.5, gpu_power=168.31849930846278, ram_power=0.34405088424682617, cpu_energy=0.00023773891036380014, gpu_energy=0.0009188926795578034, ram_energy=1.914034637142231e-06, energy_consumed=0.0011585456245587458, 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)
|
305 |
+
|
306 |
0%| | 0/1000 [00:00<?, ?it/s]
|
307 |
3%|▎ | 26/1000 [00:00<00:03, 259.99it/s]
|
308 |
5%|▌ | 52/1000 [00:00<00:03, 255.95it/s]
|
309 |
8%|▊ | 78/1000 [00:00<00:03, 249.28it/s]
|
310 |
10%|█ | 103/1000 [00:00<00:03, 245.71it/s]
|
311 |
13%|█▎ | 130/1000 [00:00<00:03, 252.40it/s]
|
312 |
16%|█▌ | 156/1000 [00:00<00:03, 253.49it/s]
|
313 |
18%|█▊ | 182/1000 [00:00<00:03, 252.51it/s]
|
314 |
21%|██ | 208/1000 [00:00<00:03, 254.65it/s]
|
315 |
24%|██▎ | 235/1000 [00:00<00:02, 258.60it/s]
|
316 |
26%|██▌ | 261/1000 [00:01<00:02, 250.83it/s]
|
317 |
29%|██▉ | 288/1000 [00:01<00:02, 254.85it/s]
|
318 |
32%|███▏ | 315/1000 [00:01<00:02, 256.65it/s]
|
319 |
34%|███▍ | 342/1000 [00:01<00:02, 260.40it/s]
|
320 |
37%|███▋ | 369/1000 [00:01<00:02, 262.21it/s]
|
321 |
40%|███▉ | 396/1000 [00:01<00:02, 259.29it/s]
|
322 |
42%|████▏ | 422/1000 [00:01<00:02, 257.42it/s]
|
323 |
45%|████▍ | 448/1000 [00:01<00:02, 256.97it/s]
|
324 |
47%|████▋ | 474/1000 [00:01<00:02, 257.48it/s]
|
325 |
50%|█████ | 500/1000 [00:01<00:01, 256.78it/s]
|
326 |
53%|█████▎ | 526/1000 [00:02<00:01, 256.97it/s]
|
327 |
55%|█████▌ | 552/1000 [00:02<00:01, 255.15it/s]
|
328 |
58%|█████▊ | 578/1000 [00:02<00:01, 251.98it/s]
|
329 |
60%|██████ | 604/1000 [00:02<00:01, 251.95it/s]
|
330 |
63%|██████▎ | 630/1000 [00:02<00:01, 254.11it/s]
|
331 |
66%|██████▌ | 656/1000 [00:02<00:01, 254.64it/s]
|
332 |
68%|██████▊ | 683/1000 [00:02<00:01, 256.90it/s]
|
333 |
71%|███████ | 709/1000 [00:02<00:01, 257.47it/s]
|
334 |
74%|███████▎ | 735/1000 [00:02<00:01, 255.32it/s]
|
335 |
76%|███████▌ | 761/1000 [00:02<00:00, 256.50it/s]
|
336 |
79%|███████▉ | 788/1000 [00:03<00:00, 258.35it/s]
|
337 |
81%|████████▏ | 814/1000 [00:03<00:00, 258.40it/s]
|
338 |
84%|████████▍ | 841/1000 [00:03<00:00, 260.33it/s]
|
339 |
87%|████████▋ | 868/1000 [00:03<00:00, 259.63it/s]
|
340 |
90%|████████▉ | 895/1000 [00:03<00:00, 260.58it/s]
|
341 |
92%|█████████▏| 922/1000 [00:03<00:00, 260.19it/s]
|
342 |
95%|█████████▍| 949/1000 [00:03<00:00, 258.39it/s]
|
343 |
98%|█████████▊| 976/1000 [00:03<00:00, 260.46it/s]
|
344 |
+
[codecarbon WARNING @ 17:38:09] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
345 |
+
[codecarbon INFO @ 17:38:09] Energy consumed for RAM : 0.000002 kWh. RAM Power : 0.3440537452697754 W
|
346 |
+
[codecarbon DEBUG @ 17:38:09] RAM : 0.34 W during 3.90 s [measurement time: 0.0004]
|
347 |
+
[codecarbon INFO @ 17:38:09] Energy consumed for all GPUs : 0.001104 kWh. Total GPU Power : 170.9065803122797 W
|
348 |
+
[codecarbon DEBUG @ 17:38:09] GPU : 170.91 W during 3.90 s [measurement time: 0.0023]
|
349 |
+
[codecarbon INFO @ 17:38:09] Energy consumed for all CPUs : 0.000284 kWh. Total CPU Power : 42.5 W
|
350 |
+
[codecarbon DEBUG @ 17:38:09] CPU : 42.50 W during 3.90 s [measurement time: 0.0000]
|
351 |
+
[codecarbon INFO @ 17:38:09] 0.001390 kWh of electricity used since the beginning.
|
352 |
+
[codecarbon DEBUG @ 17:38:09] last_duration=3.899036896000325
|
353 |
+
------------------------
|
354 |
+
[codecarbon DEBUG @ 17:38:09] EmissionsData(timestamp='2024-10-08T17:38:09', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=3.9021763350028777, emissions=0.0005131423612664712, emissions_rate=0.00013150158199247365, cpu_power=42.5, gpu_power=170.9065803122797, ram_power=0.3440537452697754, cpu_energy=0.0002838050751991937, gpu_energy=0.0011040317165578184, ram_energy=2.286675470838585e-06, energy_consumed=0.0013901234672278509, 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)
|
355 |
+
[codecarbon DEBUG @ 17:38:09] EmissionsData(timestamp='2024-10-08T17:38:09', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=0.005117132001032587, emissions=0.0005131423612664712, emissions_rate=0.10027928948538442, cpu_power=42.5, gpu_power=170.9065803122797, ram_power=0.3440537452697754, cpu_energy=0.0002838050751991937, gpu_energy=0.0011040317165578184, ram_energy=2.286675470838585e-06, energy_consumed=0.0013901234672278509, 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)
|
356 |
+
|
357 |
0%| | 0/1000 [00:00<?, ?it/s]
|
358 |
3%|▎ | 26/1000 [00:00<00:03, 259.68it/s]
|
359 |
5%|▌ | 52/1000 [00:00<00:03, 256.30it/s]
|
360 |
8%|▊ | 78/1000 [00:00<00:03, 253.21it/s]
|
361 |
10%|█ | 104/1000 [00:00<00:03, 248.01it/s]
|
362 |
13%|█▎ | 130/1000 [00:00<00:03, 250.73it/s]
|
363 |
16%|█▌ | 156/1000 [00:00<00:03, 249.88it/s]
|
364 |
18%|█▊ | 182/1000 [00:00<00:03, 248.64it/s]
|
365 |
21%|██ | 208/1000 [00:00<00:03, 250.24it/s]
|
366 |
24%|██▎ | 235/1000 [00:00<00:03, 254.62it/s]
|
367 |
26%|██▌ | 261/1000 [00:01<00:02, 248.15it/s]
|
368 |
29%|██▉ | 288/1000 [00:01<00:02, 253.05it/s]
|
369 |
31%|███▏ | 314/1000 [00:01<00:02, 248.03it/s]
|
370 |
34%|███▍ | 340/1000 [00:01<00:02, 251.08it/s]
|
371 |
37%|███▋ | 366/1000 [00:01<00:02, 252.42it/s]
|
372 |
39%|███▉ | 392/1000 [00:01<00:02, 253.34it/s]
|
373 |
42%|████▏ | 418/1000 [00:01<00:02, 254.02it/s]
|
374 |
44%|████▍ | 444/1000 [00:01<00:02, 254.59it/s]
|
375 |
47%|████▋ | 470/1000 [00:01<00:02, 254.32it/s]
|
376 |
50%|████▉ | 496/1000 [00:01<00:01, 254.00it/s]
|
377 |
52%|█████▏ | 522/1000 [00:02<00:01, 255.52it/s]
|
378 |
55%|█████▍ | 549/1000 [00:02<00:01, 257.62it/s]
|
379 |
57%|█████▊ | 575/1000 [00:02<00:01, 256.12it/s]
|
380 |
60%|██████ | 601/1000 [00:02<00:01, 253.50it/s]
|
381 |
63%|██████▎ | 628/1000 [00:02<00:01, 255.43it/s]
|
382 |
65%|██████▌ | 654/1000 [00:02<00:01, 255.49it/s]
|
383 |
68%|██████▊ | 681/1000 [00:02<00:01, 257.51it/s]
|
384 |
71%|███████ | 708/1000 [00:02<00:01, 258.81it/s]
|
385 |
73%|███████▎ | 734/1000 [00:02<00:01, 255.64it/s]
|
386 |
76%|███████▌ | 760/1000 [00:02<00:00, 256.11it/s]
|
387 |
79%|███████▊ | 787/1000 [00:03<00:00, 258.31it/s]
|
388 |
81%|████████▏ | 813/1000 [00:03<00:00, 258.37it/s]
|
389 |
84%|████████▍ | 840/1000 [00:03<00:00, 260.35it/s]
|
390 |
87%|████████▋ | 867/1000 [00:03<00:00, 259.74it/s]
|
391 |
89%|████████▉ | 894/1000 [00:03<00:00, 260.61it/s]
|
392 |
92%|█████████▏| 921/1000 [00:03<00:00, 257.96it/s]
|
393 |
95%|█████████▍| 947/1000 [00:03<00:00, 256.18it/s]
|
394 |
97%|█████████▋| 973/1000 [00:03<00:00, 255.56it/s]
|
395 |
+
[codecarbon WARNING @ 17:38:13] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
396 |
+
[codecarbon INFO @ 17:38:13] Energy consumed for RAM : 0.000003 kWh. RAM Power : 0.3440537452697754 W
|
397 |
+
[codecarbon DEBUG @ 17:38:13] RAM : 0.34 W during 3.93 s [measurement time: 0.0004]
|
398 |
+
[codecarbon INFO @ 17:38:13] Energy consumed for all GPUs : 0.001288 kWh. Total GPU Power : 168.5056725508812 W
|
399 |
+
[codecarbon DEBUG @ 17:38:13] GPU : 168.51 W during 3.93 s [measurement time: 0.0023]
|
400 |
+
[codecarbon INFO @ 17:38:13] Energy consumed for all CPUs : 0.000330 kWh. Total CPU Power : 42.5 W
|
401 |
+
[codecarbon DEBUG @ 17:38:13] CPU : 42.50 W during 3.94 s [measurement time: 0.0000]
|
402 |
+
[codecarbon INFO @ 17:38:13] 0.001621 kWh of electricity used since the beginning.
|
403 |
+
[codecarbon DEBUG @ 17:38:13] EmissionsData(timestamp='2024-10-08T17:38:13', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=3.93702660100098, emissions=0.0005984210389597376, emissions_rate=0.00015199822089279012, cpu_power=42.5, gpu_power=168.5056725508812, ram_power=0.3440537452697754, cpu_energy=0.0003302829055179397, gpu_energy=0.001288201308337955, ram_energy=2.6626497311756516e-06, energy_consumed=0.0016211468635870705, 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)
|
404 |
+
[codecarbon INFO @ 17:38:13] 0.021689 g.CO2eq/s mean an estimation of 683.9802393565444 kg.CO2eq/year
|
405 |
+
[codecarbon DEBUG @ 17:38:13] last_duration=3.9339104940008838
|
406 |
+
------------------------
|
407 |
+
[codecarbon DEBUG @ 17:38:13] EmissionsData(timestamp='2024-10-08T17:38:13', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=3.9373618210011045, emissions=0.0005984210389597376, emissions_rate=0.00015198528003392497, cpu_power=42.5, gpu_power=168.5056725508812, ram_power=0.3440537452697754, cpu_energy=0.0003302829055179397, gpu_energy=0.001288201308337955, ram_energy=2.6626497311756516e-06, energy_consumed=0.0016211468635870705, 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)
|
408 |
+
[codecarbon DEBUG @ 17:38:13] EmissionsData(timestamp='2024-10-08T17:38:13', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=0.005522163999557961, emissions=0.0005984210389597376, emissions_rate=0.10836712546161978, cpu_power=42.5, gpu_power=168.5056725508812, ram_power=0.3440537452697754, cpu_energy=0.0003302829055179397, gpu_energy=0.001288201308337955, ram_energy=2.6626497311756516e-06, energy_consumed=0.0016211468635870705, 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)
|
409 |
+
|
410 |
0%| | 0/1000 [00:00<?, ?it/s]
|
411 |
3%|▎ | 26/1000 [00:00<00:03, 250.78it/s]
|
412 |
5%|▌ | 52/1000 [00:00<00:03, 252.12it/s]
|
413 |
8%|▊ | 78/1000 [00:00<00:03, 250.96it/s]
|
414 |
10%|█ | 104/1000 [00:00<00:03, 245.39it/s]
|
415 |
13%|█▎ | 131/1000 [00:00<00:03, 250.45it/s]
|
416 |
16%|█▌ | 157/1000 [00:00<00:03, 253.56it/s]
|
417 |
18%|█▊ | 183/1000 [00:00<00:03, 253.33it/s]
|
418 |
21%|██ | 209/1000 [00:00<00:03, 255.24it/s]
|
419 |
24%|██▎ | 236/1000 [00:00<00:02, 258.60it/s]
|
420 |
26%|██▌ | 262/1000 [00:01<00:02, 250.63it/s]
|
421 |
29%|██▉ | 288/1000 [00:01<00:02, 249.61it/s]
|
422 |
31%|███▏ | 314/1000 [00:01<00:02, 249.83it/s]
|
423 |
34%|███▍ | 340/1000 [00:01<00:02, 251.56it/s]
|
424 |
37%|███▋ | 366/1000 [00:01<00:02, 252.13it/s]
|
425 |
39%|███▉ | 392/1000 [00:01<00:02, 249.52it/s]
|
426 |
42%|████▏ | 417/1000 [00:01<00:02, 247.98it/s]
|
427 |
44%|████▍ | 442/1000 [00:01<00:02, 246.96it/s]
|
428 |
47%|████▋ | 467/1000 [00:01<00:02, 246.66it/s]
|
429 |
49%|████▉ | 492/1000 [00:01<00:02, 246.34it/s]
|
430 |
52%|█████▏ | 518/1000 [00:02<00:01, 249.40it/s]
|
431 |
54%|█████▍ | 544/1000 [00:02<00:01, 251.69it/s]
|
432 |
57%|█████▋ | 570/1000 [00:02<00:01, 254.00it/s]
|
433 |
60%|█████▉ | 596/1000 [00:02<00:01, 252.12it/s]
|
434 |
62%|██████▏ | 622/1000 [00:02<00:01, 254.30it/s]
|
435 |
65%|██████▍ | 648/1000 [00:02<00:01, 254.42it/s]
|
436 |
68%|██████▊ | 675/1000 [00:02<00:01, 257.31it/s]
|
437 |
70%|███████ | 702/1000 [00:02<00:01, 259.55it/s]
|
438 |
73%|███████▎ | 728/1000 [00:02<00:01, 254.82it/s]
|
439 |
75%|███████▌ | 754/1000 [00:02<00:00, 255.81it/s]
|
440 |
78%|███████▊ | 781/1000 [00:03<00:00, 258.24it/s]
|
441 |
81%|████████ | 808/1000 [00:03<00:00, 259.85it/s]
|
442 |
84%|████████▎ | 835/1000 [00:03<00:00, 260.66it/s]
|
443 |
86%|████████▌ | 862/1000 [00:03<00:00, 260.17it/s]
|
444 |
89%|████████▉ | 889/1000 [00:03<00:00, 262.89it/s]
|
445 |
92%|█████████▏| 916/1000 [00:03<00:00, 260.28it/s]
|
446 |
94%|█████████▍| 943/1000 [00:03<00:00, 259.79it/s]
|
447 |
97%|█████████▋| 970/1000 [00:03<00:00, 260.74it/s]
|
448 |
+
[codecarbon WARNING @ 17:38:17] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
449 |
+
[codecarbon INFO @ 17:38:17] Energy consumed for RAM : 0.000003 kWh. RAM Power : 0.3440537452697754 W
|
450 |
+
[codecarbon DEBUG @ 17:38:17] RAM : 0.34 W during 3.94 s [measurement time: 0.0004]
|
451 |
+
[codecarbon INFO @ 17:38:17] Energy consumed for all GPUs : 0.001478 kWh. Total GPU Power : 173.81885248019637 W
|
452 |
+
[codecarbon DEBUG @ 17:38:17] GPU : 173.82 W during 3.94 s [measurement time: 0.0068]
|
453 |
+
[codecarbon INFO @ 17:38:17] Energy consumed for all CPUs : 0.000377 kWh. Total CPU Power : 42.5 W
|
454 |
+
[codecarbon DEBUG @ 17:38:17] CPU : 42.50 W during 3.94 s [measurement time: 0.0000]
|
455 |
+
[codecarbon INFO @ 17:38:17] 0.001858 kWh of electricity used since the beginning.
|
456 |
+
[codecarbon DEBUG @ 17:38:17] last_duration=3.9359960869987844
|
457 |
+
------------------------
|
458 |
+
[codecarbon DEBUG @ 17:38:17] EmissionsData(timestamp='2024-10-08T17:38:17', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=3.9437155299965525, emissions=0.0006859098031810955, emissions_rate=0.0001739247666227323, cpu_power=42.5, gpu_power=173.81885248019637, ram_power=0.3440537452697754, cpu_energy=0.0003768394129818262, gpu_energy=0.001478279238178004, ram_energy=3.0388228214137838e-06, energy_consumed=0.0018581574739812443, 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)
|
459 |
+
[codecarbon DEBUG @ 17:38:17] EmissionsData(timestamp='2024-10-08T17:38:17', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=0.002038452003034763, emissions=0.0006859098031810955, emissions_rate=0.336485628388572, cpu_power=42.5, gpu_power=173.81885248019637, ram_power=0.3440537452697754, cpu_energy=0.0003768394129818262, gpu_energy=0.001478279238178004, ram_energy=3.0388228214137838e-06, energy_consumed=0.0018581574739812443, 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)
|
460 |
+
|
461 |
0%| | 0/1000 [00:00<?, ?it/s]
|
462 |
3%|▎ | 27/1000 [00:00<00:03, 261.26it/s]
|
463 |
5%|▌ | 54/1000 [00:00<00:03, 257.59it/s]
|
464 |
8%|▊ | 80/1000 [00:00<00:03, 254.35it/s]
|
465 |
11%|█ | 106/1000 [00:00<00:03, 249.01it/s]
|
466 |
13%|█▎ | 132/1000 [00:00<00:03, 252.63it/s]
|
467 |
16%|█▌ | 158/1000 [00:00<00:03, 253.86it/s]
|
468 |
18%|█▊ | 184/1000 [00:00<00:03, 254.50it/s]
|
469 |
21%|██ | 211/1000 [00:00<00:03, 256.51it/s]
|
470 |
24%|██▍ | 238/1000 [00:00<00:02, 259.62it/s]
|
471 |
26%|██▋ | 264/1000 [00:01<00:02, 251.99it/s]
|
472 |
29%|██▉ | 291/1000 [00:01<00:02, 256.40it/s]
|
473 |
32%|███▏ | 318/1000 [00:01<00:02, 258.30it/s]
|
474 |
35%|███▍ | 346/1000 [00:01<00:02, 262.01it/s]
|
475 |
37%|███▋ | 374/1000 [00:01<00:02, 264.83it/s]
|
476 |
40%|████ | 401/1000 [00:01<00:02, 261.11it/s]
|
477 |
43%|████▎ | 428/1000 [00:01<00:02, 258.81it/s]
|
478 |
45%|████▌ | 454/1000 [00:01<00:02, 256.21it/s]
|
479 |
48%|████▊ | 480/1000 [00:01<00:02, 254.49it/s]
|
480 |
51%|█████ | 506/1000 [00:01<00:01, 252.08it/s]
|
481 |
53%|█████▎ | 532/1000 [00:02<00:01, 250.79it/s]
|
482 |
56%|█████▌ | 558/1000 [00:02<00:01, 251.54it/s]
|
483 |
58%|█████▊ | 584/1000 [00:02<00:01, 251.94it/s]
|
484 |
61%|██████ | 610/1000 [00:02<00:01, 254.14it/s]
|
485 |
64%|██████▎ | 636/1000 [00:02<00:01, 253.80it/s]
|
486 |
66%|██████▌ | 662/1000 [00:02<00:01, 251.62it/s]
|
487 |
69%|██████▉ | 688/1000 [00:02<00:01, 250.71it/s]
|
488 |
71%|███████▏ | 714/1000 [00:02<00:01, 249.26it/s]
|
489 |
74%|███████▍ | 740/1000 [00:02<00:01, 249.89it/s]
|
490 |
76%|███████▋ | 765/1000 [00:03<00:00, 248.35it/s]
|
491 |
79%|███████▉ | 791/1000 [00:03<00:00, 250.34it/s]
|
492 |
82%|████████▏ | 817/1000 [00:03<00:00, 249.49it/s]
|
493 |
84%|████████▍ | 843/1000 [00:03<00:00, 250.29it/s]
|
494 |
87%|████████▋ | 870/1000 [00:03<00:00, 254.38it/s]
|
495 |
90%|████████▉ | 897/1000 [00:03<00:00, 256.46it/s]
|
496 |
92%|█████████▏| 923/1000 [00:03<00:00, 253.10it/s]
|
497 |
95%|█████████▍| 949/1000 [00:03<00:00, 251.05it/s]
|
498 |
98%|██���██████▊| 976/1000 [00:03<00:00, 256.35it/s]
|
499 |
+
[codecarbon WARNING @ 17:38:21] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
500 |
+
[codecarbon INFO @ 17:38:21] Energy consumed for RAM : 0.000003 kWh. RAM Power : 0.3440537452697754 W
|
501 |
+
[codecarbon DEBUG @ 17:38:21] RAM : 0.34 W during 3.93 s [measurement time: 0.0004]
|
502 |
+
[codecarbon INFO @ 17:38:21] Energy consumed for all GPUs : 0.001664 kWh. Total GPU Power : 170.2177825028557 W
|
503 |
+
[codecarbon DEBUG @ 17:38:21] GPU : 170.22 W during 3.93 s [measurement time: 0.0031]
|
504 |
+
[codecarbon INFO @ 17:38:21] Energy consumed for all CPUs : 0.000423 kWh. Total CPU Power : 42.5 W
|
505 |
+
[codecarbon DEBUG @ 17:38:21] CPU : 42.50 W during 3.94 s [measurement time: 0.0000]
|
506 |
+
[codecarbon INFO @ 17:38:21] 0.002091 kWh of electricity used since the beginning.
|
507 |
+
[codecarbon DEBUG @ 17:38:21] last_duration=3.933801384999242
|
508 |
+
------------------------
|
509 |
+
[codecarbon DEBUG @ 17:38:21] EmissionsData(timestamp='2024-10-08T17:38:21', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=3.9378736580038094, emissions=0.0007718815633932052, emissions_rate=0.00019601481165459436, cpu_power=42.5, gpu_power=170.2177825028557, ram_power=0.3440537452697754, cpu_energy=0.0004233267838894942, gpu_energy=0.0016643168870080771, ram_energy=3.414788094493119e-06, energy_consumed=0.0020910584589920646, 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)
|
510 |
+
[codecarbon DEBUG @ 17:38:21] EmissionsData(timestamp='2024-10-08T17:38:21', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=0.002013361001445446, emissions=0.0007718815633932052, emissions_rate=0.38337961390880754, cpu_power=42.5, gpu_power=170.2177825028557, ram_power=0.3440537452697754, cpu_energy=0.0004233267838894942, gpu_energy=0.0016643168870080771, ram_energy=3.414788094493119e-06, energy_consumed=0.0020910584589920646, 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)
|
511 |
+
|
512 |
0%| | 0/1000 [00:00<?, ?it/s]
|
513 |
3%|▎ | 27/1000 [00:00<00:03, 261.33it/s]
|
514 |
5%|▌ | 54/1000 [00:00<00:03, 256.82it/s]
|
515 |
8%|▊ | 80/1000 [00:00<00:03, 253.10it/s]
|
516 |
11%|█ | 106/1000 [00:00<00:03, 247.80it/s]
|
517 |
13%|█▎ | 132/1000 [00:00<00:03, 251.47it/s]
|
518 |
16%|█▌ | 158/1000 [00:00<00:03, 252.90it/s]
|
519 |
18%|█▊ | 184/1000 [00:00<00:03, 253.88it/s]
|
520 |
21%|██ | 210/1000 [00:00<00:03, 255.45it/s]
|
521 |
24%|██▎ | 237/1000 [00:00<00:02, 258.42it/s]
|
522 |
26%|██▋ | 263/1000 [00:01<00:02, 250.59it/s]
|
523 |
29%|██▉ | 290/1000 [00:01<00:02, 254.59it/s]
|
524 |
32%|███▏ | 317/1000 [00:01<00:02, 257.00it/s]
|
525 |
34%|███▍ | 344/1000 [00:01<00:02, 259.98it/s]
|
526 |
37%|███▋ | 371/1000 [00:01<00:02, 262.93it/s]
|
527 |
40%|███▉ | 398/1000 [00:01<00:02, 259.78it/s]
|
528 |
42%|████▎ | 425/1000 [00:01<00:02, 257.67it/s]
|
529 |
45%|████▌ | 451/1000 [00:01<00:02, 256.30it/s]
|
530 |
48%|████▊ | 477/1000 [00:01<00:02, 253.65it/s]
|
531 |
50%|█████ | 503/1000 [00:01<00:01, 251.94it/s]
|
532 |
53%|█████▎ | 529/1000 [00:02<00:01, 249.79it/s]
|
533 |
56%|█████▌ | 555/1000 [00:02<00:01, 250.30it/s]
|
534 |
58%|█████▊ | 581/1000 [00:02<00:01, 247.76it/s]
|
535 |
61%|██████ | 606/1000 [00:02<00:01, 246.30it/s]
|
536 |
63%|██████▎ | 631/1000 [00:02<00:01, 247.03it/s]
|
537 |
66%|██████▌ | 656/1000 [00:02<00:01, 247.29it/s]
|
538 |
68%|██████▊ | 682/1000 [00:02<00:01, 249.17it/s]
|
539 |
71%|███████ | 708/1000 [00:02<00:01, 249.65it/s]
|
540 |
73%|███████▎ | 733/1000 [00:02<00:01, 246.50it/s]
|
541 |
76%|███████▌ | 758/1000 [00:03<00:00, 245.91it/s]
|
542 |
78%|███████▊ | 784/1000 [00:03<00:00, 247.69it/s]
|
543 |
81%|████████ | 809/1000 [00:03<00:00, 247.11it/s]
|
544 |
84%|████████▎ | 835/1000 [00:03<00:00, 249.06it/s]
|
545 |
86%|████████▌ | 860/1000 [00:03<00:00, 248.86it/s]
|
546 |
89%|████████▊ | 886/1000 [00:03<00:00, 252.06it/s]
|
547 |
91%|█████████ | 912/1000 [00:03<00:00, 250.57it/s]
|
548 |
94%|█████████▍| 938/1000 [00:03<00:00, 250.15it/s]
|
549 |
96%|█████████▋| 964/1000 [00:03<00:00, 249.62it/s]
|
550 |
99%|█████████▉| 990/1000 [00:03<00:00, 252.20it/s]
|
551 |
+
[codecarbon WARNING @ 17:38:25] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
552 |
+
[codecarbon INFO @ 17:38:25] Energy consumed for RAM : 0.000004 kWh. RAM Power : 0.34405517578125 W
|
553 |
+
[codecarbon DEBUG @ 17:38:25] RAM : 0.34 W during 3.97 s [measurement time: 0.0004]
|
554 |
+
[codecarbon INFO @ 17:38:25] Energy consumed for all GPUs : 0.001854 kWh. Total GPU Power : 171.94132407650213 W
|
555 |
+
[codecarbon DEBUG @ 17:38:25] GPU : 171.94 W during 3.97 s [measurement time: 0.0048]
|
556 |
+
[codecarbon INFO @ 17:38:25] Energy consumed for all CPUs : 0.000470 kWh. Total CPU Power : 42.5 W
|
557 |
+
[codecarbon DEBUG @ 17:38:25] CPU : 42.50 W during 3.98 s [measurement time: 0.0000]
|
558 |
+
[codecarbon INFO @ 17:38:25] 0.002328 kWh of electricity used since the beginning.
|
559 |
+
[codecarbon DEBUG @ 17:38:25] last_duration=3.9721385410011862
|
560 |
+
------------------------
|
561 |
+
[codecarbon DEBUG @ 17:38:25] EmissionsData(timestamp='2024-10-08T17:38:25', project_name='codecarbon', run_id='53146998-521f-417d-b6f1-5de4fa49fe1c', duration=3.977883915998973, emissions=0.0008594002293502864, emissions_rate=0.00021604457231489215, cpu_power=42.5, gpu_power=171.94132407650213, ram_power=0.34405517578125, cpu_energy=0.000470286674259675, gpu_energy=0.0018540689832540203, ram_energy=3.7944168872861273e-06, energy_consumed=0.0023281500744009817, 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-37-33/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-37-33/forward_codecarbon.json
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"timestamp": "2024-10-08T17:38:25",
|
3 |
+
"project_name": "codecarbon",
|
4 |
+
"run_id": "53146998-521f-417d-b6f1-5de4fa49fe1c",
|
5 |
+
"duration": -1728343838.3227837,
|
6 |
+
"emissions": 8.751866595708123e-05,
|
7 |
+
"emissions_rate": 2.2012453561163703e-05,
|
8 |
+
"cpu_power": 42.5,
|
9 |
+
"gpu_power": 171.94132407650213,
|
10 |
+
"ram_power": 0.34405517578125,
|
11 |
+
"cpu_energy": 4.6959890370180805e-05,
|
12 |
+
"gpu_energy": 0.00018975209624594314,
|
13 |
+
"ram_energy": 3.796287927930083e-07,
|
14 |
+
"energy_consumed": 0.000237091615408917,
|
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-37-33/preprocess_codecarbon.json
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"timestamp": "2024-10-08T17:37:45",
|
3 |
+
"project_name": "codecarbon",
|
4 |
+
"run_id": "53146998-521f-417d-b6f1-5de4fa49fe1c",
|
5 |
+
"duration": -1728343841.8774693,
|
6 |
+
"emissions": 4.625094804077252e-06,
|
7 |
+
"emissions_rate": 1.0978766511192425e-05,
|
8 |
+
"cpu_power": 42.5,
|
9 |
+
"gpu_power": 64.11599605880454,
|
10 |
+
"ram_power": 0.27330780029296875,
|
11 |
+
"cpu_energy": 4.9979329326207435e-06,
|
12 |
+
"gpu_energy": 7.499728221782576e-06,
|
13 |
+
"ram_energy": 3.1908241179319e-08,
|
14 |
+
"energy_consumed": 1.2529569395582638e-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 |
+
}
|