Upload folder using huggingface_hub
Browse files- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-13-01-46/.hydra/config.yaml +94 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-13-01-46/.hydra/hydra.yaml +175 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-13-01-46/.hydra/overrides.yaml +2 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-13-01-46/benchmark_report.json +107 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-13-01-46/cli.log +113 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-13-01-46/error.log +178 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-13-01-46/experiment_config.json +107 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-13-01-46/forward_codecarbon.json +33 -0
- runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-13-01-46/preprocess_codecarbon.json +33 -0
runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-13-01-46/.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-13-01-46/.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-13-01-46
|
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-13-01-46
|
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-13-01-46
|
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-13-01-46/.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-13-01-46/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.199242120138857e-05,
|
9 |
+
"ram": 3.396671633310233e-07,
|
10 |
+
"gpu": 0.0001634990752436001,
|
11 |
+
"total": 0.00020583116360831972
|
12 |
+
},
|
13 |
+
"efficiency": {
|
14 |
+
"unit": "samples/kWh",
|
15 |
+
"value": 4858350.807863673
|
16 |
+
},
|
17 |
+
"measures": [
|
18 |
+
{
|
19 |
+
"unit": "kWh",
|
20 |
+
"cpu": 4.641069239583355e-05,
|
21 |
+
"ram": 3.7517425039208277e-07,
|
22 |
+
"gpu": 0.00017940125463200042,
|
23 |
+
"total": 0.00022618712127822605
|
24 |
+
},
|
25 |
+
{
|
26 |
+
"unit": "kWh",
|
27 |
+
"cpu": 4.5789672148610734e-05,
|
28 |
+
"ram": 3.7047151650458764e-07,
|
29 |
+
"gpu": 0.0001735987499900003,
|
30 |
+
"total": 0.0002197588936551156
|
31 |
+
},
|
32 |
+
{
|
33 |
+
"unit": "kWh",
|
34 |
+
"cpu": 4.7522242023610446e-05,
|
35 |
+
"ram": 3.844963840901498e-07,
|
36 |
+
"gpu": 0.00018617376004999991,
|
37 |
+
"total": 0.00023408049845770058
|
38 |
+
},
|
39 |
+
{
|
40 |
+
"unit": "kWh",
|
41 |
+
"cpu": 4.768518240763777e-05,
|
42 |
+
"ram": 3.858124647162666e-07,
|
43 |
+
"gpu": 0.00018144681182399956,
|
44 |
+
"total": 0.00022951780669635353
|
45 |
+
},
|
46 |
+
{
|
47 |
+
"unit": "kWh",
|
48 |
+
"cpu": 4.6510362793749266e-05,
|
49 |
+
"ram": 3.7618080506884136e-07,
|
50 |
+
"gpu": 0.0001849954257739997,
|
51 |
+
"total": 0.00023188196937281788
|
52 |
+
},
|
53 |
+
{
|
54 |
+
"unit": "kWh",
|
55 |
+
"cpu": 4.615792570000061e-05,
|
56 |
+
"ram": 3.734582074842284e-07,
|
57 |
+
"gpu": 0.00018066681120000073,
|
58 |
+
"total": 0.00022719819510748558
|
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.640535803194368e-05,
|
70 |
+
"ram": 3.754592359952566e-07,
|
71 |
+
"gpu": 0.0001816501453199993,
|
72 |
+
"total": 0.00022843096258793835
|
73 |
+
},
|
74 |
+
{
|
75 |
+
"unit": "kWh",
|
76 |
+
"cpu": 4.687578381458359e-05,
|
77 |
+
"ram": 3.788481082733224e-07,
|
78 |
+
"gpu": 0.00018527098155000053,
|
79 |
+
"total": 0.0002325256134728575
|
80 |
+
},
|
81 |
+
{
|
82 |
+
"unit": "kWh",
|
83 |
+
"cpu": 4.6566992697916003e-05,
|
84 |
+
"ram": 3.767706607854975e-07,
|
85 |
+
"gpu": 0.00018178681209600044,
|
86 |
+
"total": 0.00022873057545470202
|
87 |
+
}
|
88 |
+
]
|
89 |
+
},
|
90 |
+
"preprocess": {
|
91 |
+
"memory": null,
|
92 |
+
"latency": null,
|
93 |
+
"throughput": null,
|
94 |
+
"energy": {
|
95 |
+
"unit": "kWh",
|
96 |
+
"cpu": 5.039404527083176e-06,
|
97 |
+
"ram": 3.218663418082601e-08,
|
98 |
+
"gpu": 7.385561463999803e-06,
|
99 |
+
"total": 1.2457152625263805e-05
|
100 |
+
},
|
101 |
+
"efficiency": {
|
102 |
+
"unit": "samples/kWh",
|
103 |
+
"value": 80275166.41097774
|
104 |
+
},
|
105 |
+
"measures": null
|
106 |
+
}
|
107 |
+
}
|
runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-13-01-46/cli.log
ADDED
@@ -0,0 +1,113 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[2024-10-08 13:01:49,508][launcher][INFO] - ََAllocating process launcher
|
2 |
+
[2024-10-08 13:01:49,509][process][INFO] - + Setting multiprocessing start method to spawn.
|
3 |
+
[2024-10-08 13:01:49,518][device-isolation][INFO] - + Launched device(s) isolation process 180
|
4 |
+
[2024-10-08 13:01:49,519][device-isolation][INFO] - + Isolating device(s) [0]
|
5 |
+
[2024-10-08 13:01:49,524][process][INFO] - + Launched benchmark in isolated process 181.
|
6 |
+
[PROC-0][2024-10-08 13:01:52,089][datasets][INFO] - PyTorch version 2.4.0 available.
|
7 |
+
[PROC-0][2024-10-08 13:01:53,065][backend][INFO] - َAllocating pytorch backend
|
8 |
+
[PROC-0][2024-10-08 13:01:53,065][backend][INFO] - + Setting random seed to 42
|
9 |
+
[PROC-0][2024-10-08 13:01:53,587][pytorch][INFO] - + Using AutoModel class AutoModelForSequenceClassification
|
10 |
+
[PROC-0][2024-10-08 13:01:53,587][pytorch][INFO] - + Creating backend temporary directory
|
11 |
+
[PROC-0][2024-10-08 13:01:53,588][pytorch][INFO] - + Loading model with random weights
|
12 |
+
[PROC-0][2024-10-08 13:01:53,588][pytorch][INFO] - + Creating no weights model
|
13 |
+
[PROC-0][2024-10-08 13:01:53,588][pytorch][INFO] - + Creating no weights model directory
|
14 |
+
[PROC-0][2024-10-08 13:01:53,588][pytorch][INFO] - + Creating no weights model state dict
|
15 |
+
[PROC-0][2024-10-08 13:01:53,590][pytorch][INFO] - + Saving no weights model safetensors
|
16 |
+
[PROC-0][2024-10-08 13:01:53,590][pytorch][INFO] - + Saving no weights model pretrained config
|
17 |
+
[PROC-0][2024-10-08 13:01:53,591][pytorch][INFO] - + Loading no weights AutoModel
|
18 |
+
[PROC-0][2024-10-08 13:01:53,591][pytorch][INFO] - + Loading model directly on device: cuda
|
19 |
+
[PROC-0][2024-10-08 13:01:53,736][pytorch][INFO] - + Turning on model's eval mode
|
20 |
+
[PROC-0][2024-10-08 13:01:53,742][benchmark][INFO] - Allocating energy_star benchmark
|
21 |
+
[PROC-0][2024-10-08 13:01:53,742][energy_star][INFO] - + Loading raw dataset
|
22 |
+
[PROC-0][2024-10-08 13:01:54,454][energy_star][INFO] - + Initializing Inference report
|
23 |
+
[PROC-0][2024-10-08 13:01:54,454][energy][INFO] - + Tracking GPU energy on devices [0]
|
24 |
+
[PROC-0][2024-10-08 13:01:58,639][energy_star][INFO] - + Preprocessing dataset
|
25 |
+
[PROC-0][2024-10-08 13:01:59,066][energy][INFO] - + Saving codecarbon emission data to preprocess_codecarbon.json
|
26 |
+
[PROC-0][2024-10-08 13:01:59,067][energy_star][INFO] - + Preparing backend for Inference
|
27 |
+
[PROC-0][2024-10-08 13:01:59,067][energy_star][INFO] - + Initialising dataloader
|
28 |
+
[PROC-0][2024-10-08 13:01:59,067][energy_star][INFO] - + Warming up backend for Inference
|
29 |
+
[PROC-0][2024-10-08 13:01:59,710][energy_star][INFO] - + Running Inference energy tracking for 10 iterations
|
30 |
+
[PROC-0][2024-10-08 13:01:59,711][energy_star][INFO] - + Iteration 1/10
|
31 |
+
[PROC-0][2024-10-08 13:02:03,643][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
32 |
+
[PROC-0][2024-10-08 13:02:03,643][energy_star][INFO] - + Iteration 2/10
|
33 |
+
[PROC-0][2024-10-08 13:02:07,522][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
34 |
+
[PROC-0][2024-10-08 13:02:07,523][energy_star][INFO] - + Iteration 3/10
|
35 |
+
[PROC-0][2024-10-08 13:02:11,549][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
36 |
+
[PROC-0][2024-10-08 13:02:11,549][energy_star][INFO] - + Iteration 4/10
|
37 |
+
[PROC-0][2024-10-08 13:02:15,589][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
38 |
+
[PROC-0][2024-10-08 13:02:15,589][energy_star][INFO] - + Iteration 5/10
|
39 |
+
[PROC-0][2024-10-08 13:02:19,530][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
40 |
+
[PROC-0][2024-10-08 13:02:19,530][energy_star][INFO] - + Iteration 6/10
|
41 |
+
[PROC-0][2024-10-08 13:02:23,440][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
42 |
+
[PROC-0][2024-10-08 13:02:23,441][energy_star][INFO] - + Iteration 7/10
|
43 |
+
[PROC-0][2024-10-08 13:02:27,329][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
44 |
+
[PROC-0][2024-10-08 13:02:27,329][energy_star][INFO] - + Iteration 8/10
|
45 |
+
[PROC-0][2024-10-08 13:02:31,260][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
46 |
+
[PROC-0][2024-10-08 13:02:31,261][energy_star][INFO] - + Iteration 9/10
|
47 |
+
[PROC-0][2024-10-08 13:02:35,232][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
48 |
+
[PROC-0][2024-10-08 13:02:35,233][energy_star][INFO] - + Iteration 10/10
|
49 |
+
[PROC-0][2024-10-08 13:02:39,178][energy][INFO] - + Saving codecarbon emission data to forward_codecarbon.json
|
50 |
+
[PROC-0][2024-10-08 13:02:39,178][energy][INFO] - + forward energy consumption:
|
51 |
+
[PROC-0][2024-10-08 13:02:39,178][energy][INFO] - + CPU: 0.000042 (kWh)
|
52 |
+
[PROC-0][2024-10-08 13:02:39,179][energy][INFO] - + GPU: 0.000163 (kWh)
|
53 |
+
[PROC-0][2024-10-08 13:02:39,179][energy][INFO] - + RAM: 0.000000 (kWh)
|
54 |
+
[PROC-0][2024-10-08 13:02:39,179][energy][INFO] - + total: 0.000206 (kWh)
|
55 |
+
[PROC-0][2024-10-08 13:02:39,179][energy][INFO] - + forward_iteration_1 energy consumption:
|
56 |
+
[PROC-0][2024-10-08 13:02:39,179][energy][INFO] - + CPU: 0.000046 (kWh)
|
57 |
+
[PROC-0][2024-10-08 13:02:39,179][energy][INFO] - + GPU: 0.000179 (kWh)
|
58 |
+
[PROC-0][2024-10-08 13:02:39,179][energy][INFO] - + RAM: 0.000000 (kWh)
|
59 |
+
[PROC-0][2024-10-08 13:02:39,179][energy][INFO] - + total: 0.000226 (kWh)
|
60 |
+
[PROC-0][2024-10-08 13:02:39,179][energy][INFO] - + forward_iteration_2 energy consumption:
|
61 |
+
[PROC-0][2024-10-08 13:02:39,179][energy][INFO] - + CPU: 0.000046 (kWh)
|
62 |
+
[PROC-0][2024-10-08 13:02:39,180][energy][INFO] - + GPU: 0.000174 (kWh)
|
63 |
+
[PROC-0][2024-10-08 13:02:39,180][energy][INFO] - + RAM: 0.000000 (kWh)
|
64 |
+
[PROC-0][2024-10-08 13:02:39,180][energy][INFO] - + total: 0.000220 (kWh)
|
65 |
+
[PROC-0][2024-10-08 13:02:39,180][energy][INFO] - + forward_iteration_3 energy consumption:
|
66 |
+
[PROC-0][2024-10-08 13:02:39,180][energy][INFO] - + CPU: 0.000048 (kWh)
|
67 |
+
[PROC-0][2024-10-08 13:02:39,180][energy][INFO] - + GPU: 0.000186 (kWh)
|
68 |
+
[PROC-0][2024-10-08 13:02:39,180][energy][INFO] - + RAM: 0.000000 (kWh)
|
69 |
+
[PROC-0][2024-10-08 13:02:39,180][energy][INFO] - + total: 0.000234 (kWh)
|
70 |
+
[PROC-0][2024-10-08 13:02:39,180][energy][INFO] - + forward_iteration_4 energy consumption:
|
71 |
+
[PROC-0][2024-10-08 13:02:39,181][energy][INFO] - + CPU: 0.000048 (kWh)
|
72 |
+
[PROC-0][2024-10-08 13:02:39,181][energy][INFO] - + GPU: 0.000181 (kWh)
|
73 |
+
[PROC-0][2024-10-08 13:02:39,181][energy][INFO] - + RAM: 0.000000 (kWh)
|
74 |
+
[PROC-0][2024-10-08 13:02:39,181][energy][INFO] - + total: 0.000230 (kWh)
|
75 |
+
[PROC-0][2024-10-08 13:02:39,181][energy][INFO] - + forward_iteration_5 energy consumption:
|
76 |
+
[PROC-0][2024-10-08 13:02:39,181][energy][INFO] - + CPU: 0.000047 (kWh)
|
77 |
+
[PROC-0][2024-10-08 13:02:39,181][energy][INFO] - + GPU: 0.000185 (kWh)
|
78 |
+
[PROC-0][2024-10-08 13:02:39,181][energy][INFO] - + RAM: 0.000000 (kWh)
|
79 |
+
[PROC-0][2024-10-08 13:02:39,181][energy][INFO] - + total: 0.000232 (kWh)
|
80 |
+
[PROC-0][2024-10-08 13:02:39,181][energy][INFO] - + forward_iteration_6 energy consumption:
|
81 |
+
[PROC-0][2024-10-08 13:02:39,182][energy][INFO] - + CPU: 0.000046 (kWh)
|
82 |
+
[PROC-0][2024-10-08 13:02:39,182][energy][INFO] - + GPU: 0.000181 (kWh)
|
83 |
+
[PROC-0][2024-10-08 13:02:39,182][energy][INFO] - + RAM: 0.000000 (kWh)
|
84 |
+
[PROC-0][2024-10-08 13:02:39,182][energy][INFO] - + total: 0.000227 (kWh)
|
85 |
+
[PROC-0][2024-10-08 13:02:39,182][energy][INFO] - + forward_iteration_7 energy consumption:
|
86 |
+
[PROC-0][2024-10-08 13:02:39,182][energy][INFO] - + CPU: 0.000000 (kWh)
|
87 |
+
[PROC-0][2024-10-08 13:02:39,182][energy][INFO] - + GPU: 0.000000 (kWh)
|
88 |
+
[PROC-0][2024-10-08 13:02:39,182][energy][INFO] - + RAM: 0.000000 (kWh)
|
89 |
+
[PROC-0][2024-10-08 13:02:39,182][energy][INFO] - + total: 0.000000 (kWh)
|
90 |
+
[PROC-0][2024-10-08 13:02:39,182][energy][INFO] - + forward_iteration_8 energy consumption:
|
91 |
+
[PROC-0][2024-10-08 13:02:39,183][energy][INFO] - + CPU: 0.000046 (kWh)
|
92 |
+
[PROC-0][2024-10-08 13:02:39,183][energy][INFO] - + GPU: 0.000182 (kWh)
|
93 |
+
[PROC-0][2024-10-08 13:02:39,183][energy][INFO] - + RAM: 0.000000 (kWh)
|
94 |
+
[PROC-0][2024-10-08 13:02:39,183][energy][INFO] - + total: 0.000228 (kWh)
|
95 |
+
[PROC-0][2024-10-08 13:02:39,183][energy][INFO] - + forward_iteration_9 energy consumption:
|
96 |
+
[PROC-0][2024-10-08 13:02:39,183][energy][INFO] - + CPU: 0.000047 (kWh)
|
97 |
+
[PROC-0][2024-10-08 13:02:39,183][energy][INFO] - + GPU: 0.000185 (kWh)
|
98 |
+
[PROC-0][2024-10-08 13:02:39,183][energy][INFO] - + RAM: 0.000000 (kWh)
|
99 |
+
[PROC-0][2024-10-08 13:02:39,183][energy][INFO] - + total: 0.000233 (kWh)
|
100 |
+
[PROC-0][2024-10-08 13:02:39,184][energy][INFO] - + forward_iteration_10 energy consumption:
|
101 |
+
[PROC-0][2024-10-08 13:02:39,184][energy][INFO] - + CPU: 0.000047 (kWh)
|
102 |
+
[PROC-0][2024-10-08 13:02:39,184][energy][INFO] - + GPU: 0.000182 (kWh)
|
103 |
+
[PROC-0][2024-10-08 13:02:39,184][energy][INFO] - + RAM: 0.000000 (kWh)
|
104 |
+
[PROC-0][2024-10-08 13:02:39,184][energy][INFO] - + total: 0.000229 (kWh)
|
105 |
+
[PROC-0][2024-10-08 13:02:39,184][energy][INFO] - + preprocess energy consumption:
|
106 |
+
[PROC-0][2024-10-08 13:02:39,184][energy][INFO] - + CPU: 0.000005 (kWh)
|
107 |
+
[PROC-0][2024-10-08 13:02:39,184][energy][INFO] - + GPU: 0.000007 (kWh)
|
108 |
+
[PROC-0][2024-10-08 13:02:39,184][energy][INFO] - + RAM: 0.000000 (kWh)
|
109 |
+
[PROC-0][2024-10-08 13:02:39,184][energy][INFO] - + total: 0.000012 (kWh)
|
110 |
+
[PROC-0][2024-10-08 13:02:39,185][energy][INFO] - + forward energy efficiency: 4858350.807864 (samples/kWh)
|
111 |
+
[PROC-0][2024-10-08 13:02:39,185][energy][INFO] - + preprocess energy efficiency: 80275166.410978 (samples/kWh)
|
112 |
+
[2024-10-08 13:02:39,773][device-isolation][INFO] - + Closing device(s) isolation process...
|
113 |
+
[2024-10-08 13:02:39,817][datasets][INFO] - PyTorch version 2.4.0 available.
|
runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-13-01-46/error.log
ADDED
@@ -0,0 +1,178 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
0 |
0%| | 0/1000 [00:00<?, ?it/s]
|
1 |
2%|▎ | 25/1000 [00:00<00:04, 240.73it/s]
|
2 |
5%|▌ | 50/1000 [00:00<00:03, 239.68it/s]
|
3 |
7%|▋ | 74/1000 [00:00<00:03, 239.07it/s]
|
4 |
10%|▉ | 98/1000 [00:00<00:03, 238.38it/s]
|
5 |
12%|█▏ | 123/1000 [00:00<00:03, 240.99it/s]
|
6 |
15%|█▍ | 148/1000 [00:00<00:03, 240.86it/s]
|
7 |
17%|█▋ | 173/1000 [00:00<00:03, 243.66it/s]
|
8 |
20%|█▉ | 198/1000 [00:00<00:03, 243.66it/s]
|
9 |
22%|██▏ | 223/1000 [00:00<00:03, 244.09it/s]
|
10 |
25%|██▍ | 248/1000 [00:01<00:03, 243.10it/s]
|
11 |
27%|██▋ | 273/1000 [00:01<00:03, 241.62it/s]
|
12 |
30%|██▉ | 298/1000 [00:01<00:02, 243.21it/s]
|
13 |
32%|███▎ | 325/1000 [00:01<00:02, 248.72it/s]
|
14 |
35%|███▌ | 352/1000 [00:01<00:02, 254.48it/s]
|
15 |
38%|███▊ | 379/1000 [00:01<00:02, 258.46it/s]
|
16 |
40%|████ | 405/1000 [00:01<00:02, 253.37it/s]
|
17 |
43%|████▎ | 431/1000 [00:01<00:02, 255.03it/s]
|
18 |
46%|████▌ | 457/1000 [00:01<00:02, 255.15it/s]
|
19 |
48%|████▊ | 484/1000 [00:01<00:01, 258.12it/s]
|
20 |
51%|█████ | 510/1000 [00:02<00:01, 257.83it/s]
|
21 |
54%|█████▎ | 536/1000 [00:02<00:01, 258.22it/s]
|
22 |
56%|█████▋ | 563/1000 [00:02<00:01, 259.76it/s]
|
23 |
59%|█████▉ | 589/1000 [00:02<00:01, 258.08it/s]
|
24 |
62%|██████▏ | 616/1000 [00:02<00:01, 258.99it/s]
|
25 |
64%|██████▍ | 642/1000 [00:02<00:01, 258.11it/s]
|
26 |
67%|██████▋ | 669/1000 [00:02<00:01, 259.99it/s]
|
27 |
70%|██████▉ | 696/1000 [00:02<00:01, 261.94it/s]
|
28 |
72%|███████▏ | 723/1000 [00:02<00:01, 257.46it/s]
|
29 |
75%|███████▌ | 750/1000 [00:02<00:00, 258.43it/s]
|
30 |
78%|███████▊ | 777/1000 [00:03<00:00, 261.16it/s]
|
31 |
80%|████████ | 804/1000 [00:03<00:00, 262.30it/s]
|
32 |
83%|████████▎ | 831/1000 [00:03<00:00, 262.46it/s]
|
33 |
86%|████████▌ | 858/1000 [00:03<00:00, 262.74it/s]
|
34 |
89%|████████▊ | 886/1000 [00:03<00:00, 265.29it/s]
|
35 |
91%|█████████▏| 913/1000 [00:03<00:00, 264.31it/s]
|
36 |
94%|█████████▍| 940/1000 [00:03<00:00, 263.50it/s]
|
37 |
97%|█████████▋| 967/1000 [00:03<00:00, 262.46it/s]
|
38 |
99%|█████████▉| 994/1000 [00:03<00:00, 262.85it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
0%| | 0/1000 [00:00<?, ?it/s]
|
40 |
3%|▎ | 27/1000 [00:00<00:03, 261.83it/s]
|
41 |
5%|▌ | 54/1000 [00:00<00:03, 259.36it/s]
|
42 |
8%|▊ | 80/1000 [00:00<00:03, 256.36it/s]
|
43 |
11%|█ | 106/1000 [00:00<00:03, 251.00it/s]
|
44 |
13%|█▎ | 133/1000 [00:00<00:03, 255.32it/s]
|
45 |
16%|█▌ | 160/1000 [00:00<00:03, 257.75it/s]
|
46 |
19%|█▊ | 186/1000 [00:00<00:03, 258.25it/s]
|
47 |
21%|██▏ | 213/1000 [00:00<00:03, 260.13it/s]
|
48 |
24%|██▍ | 240/1000 [00:00<00:02, 261.59it/s]
|
49 |
27%|██▋ | 267/1000 [00:01<00:02, 254.67it/s]
|
50 |
29%|██▉ | 294/1000 [00:01<00:02, 258.72it/s]
|
51 |
32%|███▏ | 321/1000 [00:01<00:02, 260.10it/s]
|
52 |
35%|███▍ | 348/1000 [00:01<00:02, 262.56it/s]
|
53 |
38%|███▊ | 375/1000 [00:01<00:02, 264.45it/s]
|
54 |
40%|████ | 402/1000 [00:01<00:02, 261.13it/s]
|
55 |
43%|████▎ | 429/1000 [00:01<00:02, 259.33it/s]
|
56 |
46%|████▌ | 455/1000 [00:01<00:02, 258.04it/s]
|
57 |
48%|████▊ | 482/1000 [00:01<00:01, 260.32it/s]
|
58 |
51%|█████ | 509/1000 [00:01<00:01, 259.16it/s]
|
59 |
54%|█████▎ | 535/1000 [00:02<00:01, 257.88it/s]
|
60 |
56%|█████▌ | 561/1000 [00:02<00:01, 257.45it/s]
|
61 |
59%|█████▊ | 587/1000 [00:02<00:01, 255.24it/s]
|
62 |
61%|██████▏ | 613/1000 [00:02<00:01, 255.02it/s]
|
63 |
64%|██████▍ | 639/1000 [00:02<00:01, 253.69it/s]
|
64 |
67%|██████▋ | 666/1000 [00:02<00:01, 257.24it/s]
|
65 |
69%|██████▉ | 693/1000 [00:02<00:01, 259.29it/s]
|
66 |
72%|███████▏ | 719/1000 [00:02<00:01, 256.61it/s]
|
67 |
74%|███████▍ | 745/1000 [00:02<00:00, 257.58it/s]
|
68 |
77%|███████▋ | 771/1000 [00:02<00:00, 257.89it/s]
|
69 |
80%|███████▉ | 798/1000 [00:03<00:00, 259.12it/s]
|
70 |
82%|████████▏ | 824/1000 [00:03<00:00, 256.32it/s]
|
71 |
85%|████████▌ | 850/1000 [00:03<00:00, 255.23it/s]
|
72 |
88%|████████▊ | 876/1000 [00:03<00:00, 256.48it/s]
|
73 |
90%|█████████ | 903/1000 [00:03<00:00, 257.75it/s]
|
74 |
93%|█████████▎| 930/1000 [00:03<00:00, 259.74it/s]
|
75 |
96%|█████████▌| 956/1000 [00:03<00:00, 258.72it/s]
|
76 |
98%|█████████▊| 983/1000 [00:03<00:00, 259.60it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
0%| | 0/1000 [00:00<?, ?it/s]
|
78 |
3%|▎ | 26/1000 [00:00<00:03, 257.04it/s]
|
79 |
5%|▌ | 52/1000 [00:00<00:03, 249.03it/s]
|
80 |
8%|▊ | 77/1000 [00:00<00:03, 244.75it/s]
|
81 |
10%|█ | 102/1000 [00:00<00:03, 242.10it/s]
|
82 |
13%|█▎ | 128/1000 [00:00<00:03, 246.00it/s]
|
83 |
15%|█▌ | 153/1000 [00:00<00:03, 246.94it/s]
|
84 |
18%|█▊ | 179/1000 [00:00<00:03, 248.80it/s]
|
85 |
20%|██ | 205/1000 [00:00<00:03, 249.85it/s]
|
86 |
23%|██▎ | 231/1000 [00:00<00:03, 250.43it/s]
|
87 |
26%|██▌ | 257/1000 [00:01<00:03, 243.45it/s]
|
88 |
28%|██▊ | 282/1000 [00:01<00:02, 245.33it/s]
|
89 |
31%|███ | 308/1000 [00:01<00:02, 248.70it/s]
|
90 |
33%|███▎ | 334/1000 [00:01<00:02, 249.35it/s]
|
91 |
36%|███▌ | 360/1000 [00:01<00:02, 251.10it/s]
|
92 |
39%|███▊ | 386/1000 [00:01<00:02, 251.26it/s]
|
93 |
41%|████ | 412/1000 [00:01<00:02, 248.87it/s]
|
94 |
44%|████▎ | 437/1000 [00:01<00:02, 248.55it/s]
|
95 |
46%|████▌ | 462/1000 [00:01<00:02, 248.03it/s]
|
96 |
49%|████▉ | 488/1000 [00:01<00:02, 249.33it/s]
|
97 |
51%|█████▏ | 513/1000 [00:02<00:01, 249.12it/s]
|
98 |
54%|█████▍ | 539/1000 [00:02<00:01, 248.68it/s]
|
99 |
56%|█████▋ | 565/1000 [00:02<00:01, 249.15it/s]
|
100 |
59%|█████▉ | 590/1000 [00:02<00:01, 247.38it/s]
|
101 |
62%|██████▏ | 615/1000 [00:02<00:01, 247.13it/s]
|
102 |
64%|██████▍ | 640/1000 [00:02<00:01, 245.57it/s]
|
103 |
67%|██████▋ | 666/1000 [00:02<00:01, 247.18it/s]
|
104 |
69%|██████▉ | 692/1000 [00:02<00:01, 249.23it/s]
|
105 |
72%|███████▏ | 717/1000 [00:02<00:01, 248.36it/s]
|
106 |
74%|███████▍ | 742/1000 [00:02<00:01, 247.85it/s]
|
107 |
77%|███████▋ | 767/1000 [00:03<00:00, 246.47it/s]
|
108 |
79%|███████▉ | 793/1000 [00:03<00:00, 248.62it/s]
|
109 |
82%|████████▏ | 819/1000 [00:03<00:00, 249.28it/s]
|
110 |
84%|████████▍ | 845/1000 [00:03<00:00, 250.82it/s]
|
111 |
87%|████████▋ | 871/1000 [00:03<00:00, 252.75it/s]
|
112 |
90%|████████▉ | 897/1000 [00:03<00:00, 252.70it/s]
|
113 |
92%|█████████▏| 923/1000 [00:03<00:00, 252.33it/s]
|
114 |
95%|█████████▍| 949/1000 [00:03<00:00, 249.49it/s]
|
115 |
98%|█████████▊| 975/1000 [00:03<00:00, 251.17it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
0%| | 0/1000 [00:00<?, ?it/s]
|
117 |
2%|▎ | 25/1000 [00:00<00:03, 249.12it/s]
|
118 |
5%|▌ | 50/1000 [00:00<00:03, 244.37it/s]
|
119 |
8%|▊ | 75/1000 [00:00<00:03, 243.61it/s]
|
120 |
10%|█ | 100/1000 [00:00<00:03, 241.96it/s]
|
121 |
13%|█▎ | 126/1000 [00:00<00:03, 246.54it/s]
|
122 |
15%|█▌ | 151/1000 [00:00<00:03, 246.34it/s]
|
123 |
18%|█▊ | 177/1000 [00:00<00:03, 250.17it/s]
|
124 |
20%|██ | 203/1000 [00:00<00:03, 249.16it/s]
|
125 |
23%|██▎ | 229/1000 [00:00<00:03, 249.91it/s]
|
126 |
25%|██▌ | 254/1000 [00:01<00:03, 245.04it/s]
|
127 |
28%|██▊ | 279/1000 [00:01<00:02, 245.16it/s]
|
128 |
30%|███ | 305/1000 [00:01<00:02, 246.77it/s]
|
129 |
33%|███▎ | 331/1000 [00:01<00:02, 248.30it/s]
|
130 |
36%|███▌ | 357/1000 [00:01<00:02, 249.85it/s]
|
131 |
38%|███▊ | 383/1000 [00:01<00:02, 250.67it/s]
|
132 |
41%|████ | 409/1000 [00:01<00:02, 247.40it/s]
|
133 |
43%|████▎ | 434/1000 [00:01<00:02, 246.74it/s]
|
134 |
46%|████▌ | 459/1000 [00:01<00:02, 247.10it/s]
|
135 |
48%|████▊ | 485/1000 [00:01<00:02, 247.60it/s]
|
136 |
51%|█████ | 510/1000 [00:02<00:01, 247.92it/s]
|
137 |
54%|█████▎ | 535/1000 [00:02<00:01, 247.99it/s]
|
138 |
56%|█████▌ | 560/1000 [00:02<00:01, 247.73it/s]
|
139 |
58%|█████▊ | 585/1000 [00:02<00:01, 245.50it/s]
|
140 |
61%|██████ | 610/1000 [00:02<00:01, 246.33it/s]
|
141 |
64%|██████▎ | 635/1000 [00:02<00:01, 246.67it/s]
|
142 |
66%|██████▌ | 660/1000 [00:02<00:01, 247.07it/s]
|
143 |
69%|██████▊ | 686/1000 [00:02<00:01, 249.32it/s]
|
144 |
71%|███████ | 712/1000 [00:02<00:01, 250.57it/s]
|
145 |
74%|███████▍ | 738/1000 [00:02<00:01, 247.79it/s]
|
146 |
76%|███████▋ | 763/1000 [00:03<00:00, 246.53it/s]
|
147 |
79%|███████▉ | 789/1000 [00:03<00:00, 249.12it/s]
|
148 |
81%|████████▏ | 814/1000 [00:03<00:00, 248.38it/s]
|
149 |
84%|████████▍ | 840/1000 [00:03<00:00, 249.67it/s]
|
150 |
86%|████████▋ | 865/1000 [00:03<00:00, 248.89it/s]
|
151 |
89%|████████▉ | 891/1000 [00:03<00:00, 250.65it/s]
|
152 |
92%|█████████▏| 917/1000 [00:03<00:00, 248.36it/s]
|
153 |
94%|█████████▍| 943/1000 [00:03<00:00, 250.04it/s]
|
154 |
97%|█████████▋| 969/1000 [00:03<00:00, 250.44it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
0%| | 0/1000 [00:00<?, ?it/s]
|
156 |
2%|▎ | 25/1000 [00:00<00:03, 247.32it/s]
|
157 |
5%|▌ | 50/1000 [00:00<00:03, 245.27it/s]
|
158 |
8%|▊ | 75/1000 [00:00<00:03, 242.61it/s]
|
159 |
10%|█ | 100/1000 [00:00<00:03, 241.01it/s]
|
160 |
12%|█▎ | 125/1000 [00:00<00:03, 243.84it/s]
|
161 |
15%|█▌ | 150/1000 [00:00<00:03, 243.68it/s]
|
162 |
18%|█▊ | 176/1000 [00:00<00:03, 246.66it/s]
|
163 |
20%|██ | 201/1000 [00:00<00:03, 245.34it/s]
|
164 |
23%|██▎ | 227/1000 [00:00<00:03, 246.91it/s]
|
165 |
25%|██▌ | 252/1000 [00:01<00:03, 243.73it/s]
|
166 |
28%|██▊ | 279/1000 [00:01<00:02, 249.11it/s]
|
167 |
31%|███ | 306/1000 [00:01<00:02, 253.58it/s]
|
168 |
33%|███▎ | 333/1000 [00:01<00:02, 256.20it/s]
|
169 |
36%|███▌ | 359/1000 [00:01<00:02, 256.61it/s]
|
170 |
38%|███▊ | 385/1000 [00:01<00:02, 256.97it/s]
|
171 |
41%|████ | 411/1000 [00:01<00:02, 254.69it/s]
|
172 |
44%|████▎ | 437/1000 [00:01<00:02, 255.53it/s]
|
173 |
46%|████▋ | 463/1000 [00:01<00:02, 255.22it/s]
|
174 |
49%|████▉ | 490/1000 [00:01<00:01, 257.52it/s]
|
175 |
52%|█████▏ | 517/1000 [00:02<00:01, 258.50it/s]
|
176 |
54%|█████▍ | 543/1000 [00:02<00:01, 257.53it/s]
|
177 |
57%|█████▋ | 569/1000 [00:02<00:01, 255.49it/s]
|
178 |
60%|█████▉ | 595/1000 [00:02<00:01, 253.01it/s]
|
179 |
62%|██████▏ | 622/1000 [00:02<00:01, 254.84it/s]
|
180 |
65%|██████▍ | 648/1000 [00:02<00:01, 254.98it/s]
|
181 |
68%|██████▊ | 675/1000 [00:02<00:01, 257.11it/s]
|
182 |
70%|███████ | 702/1000 [00:02<00:01, 259.58it/s]
|
183 |
73%|███████▎ | 728/1000 [00:02<00:01, 254.25it/s]
|
184 |
76%|███████▌ | 755/1000 [00:02<00:00, 256.17it/s]
|
185 |
78%|███████▊ | 782/1000 [00:03<00:00, 259.33it/s]
|
186 |
81%|████████ | 809/1000 [00:03<00:00, 258.70it/s]
|
187 |
84%|████████▎ | 835/1000 [00:03<00:00, 258.03it/s]
|
188 |
86%|████████▌ | 861/1000 [00:03<00:00, 257.42it/s]
|
189 |
89%|████████▉ | 888/1000 [00:03<00:00, 259.85it/s]
|
190 |
91%|█████████▏| 914/1000 [00:03<00:00, 256.92it/s]
|
191 |
94%|█████████▍| 941/1000 [00:03<00:00, 257.38it/s]
|
192 |
97%|█████████▋| 968/1000 [00:03<00:00, 259.22it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
0%| | 0/1000 [00:00<?, ?it/s]
|
194 |
3%|▎ | 26/1000 [00:00<00:03, 258.57it/s]
|
195 |
5%|▌ | 52/1000 [00:00<00:03, 254.79it/s]
|
196 |
8%|▊ | 78/1000 [00:00<00:03, 248.88it/s]
|
197 |
10%|█ | 103/1000 [00:00<00:03, 239.96it/s]
|
198 |
13%|█▎ | 130/1000 [00:00<00:03, 247.95it/s]
|
199 |
16%|█▌ | 156/1000 [00:00<00:03, 250.76it/s]
|
200 |
18%|█▊ | 182/1000 [00:00<00:03, 252.58it/s]
|
201 |
21%|██ | 209/1000 [00:00<00:03, 255.87it/s]
|
202 |
24%|██▎ | 236/1000 [00:00<00:02, 258.90it/s]
|
203 |
26%|██▌ | 262/1000 [00:01<00:02, 251.53it/s]
|
204 |
29%|██▉ | 289/1000 [00:01<00:02, 255.18it/s]
|
205 |
32%|███▏ | 315/1000 [00:01<00:02, 256.59it/s]
|
206 |
34%|███▍ | 342/1000 [00:01<00:02, 260.56it/s]
|
207 |
37%|███▋ | 369/1000 [00:01<00:02, 262.90it/s]
|
208 |
40%|███▉ | 396/1000 [00:01<00:02, 259.61it/s]
|
209 |
42%|████▏ | 422/1000 [00:01<00:02, 257.92it/s]
|
210 |
45%|████▍ | 448/1000 [00:01<00:02, 258.02it/s]
|
211 |
47%|████▋ | 474/1000 [00:01<00:02, 255.15it/s]
|
212 |
50%|█████ | 500/1000 [00:01<00:01, 254.94it/s]
|
213 |
53%|█████▎ | 526/1000 [00:02<00:01, 256.15it/s]
|
214 |
55%|█████▌ | 553/1000 [00:02<00:01, 259.23it/s]
|
215 |
58%|█████▊ | 579/1000 [00:02<00:01, 257.54it/s]
|
216 |
60%|██████ | 605/1000 [00:02<00:01, 255.94it/s]
|
217 |
63%|██████▎ | 632/1000 [00:02<00:01, 257.35it/s]
|
218 |
66%|██████▌ | 658/1000 [00:02<00:01, 256.41it/s]
|
219 |
68%|██████▊ | 684/1000 [00:02<00:01, 255.76it/s]
|
220 |
71%|███████ | 710/1000 [00:02<00:01, 255.70it/s]
|
221 |
74%|███████▎ | 736/1000 [00:02<00:01, 253.05it/s]
|
222 |
76%|███████▋ | 763/1000 [00:02<00:00, 254.11it/s]
|
223 |
79%|███████▉ | 790/1000 [00:03<00:00, 257.98it/s]
|
224 |
82%|████████▏ | 816/1000 [00:03<00:00, 257.53it/s]
|
225 |
84%|████████▍ | 842/1000 [00:03<00:00, 256.45it/s]
|
226 |
87%|████████▋ | 869/1000 [00:03<00:00, 258.22it/s]
|
227 |
90%|████████▉ | 896/1000 [00:03<00:00, 259.32it/s]
|
228 |
92%|█████████▏| 922/1000 [00:03<00:00, 259.27it/s]
|
229 |
95%|█████████▍| 948/1000 [00:03<00:00, 257.46it/s]
|
230 |
98%|█████████▊| 975/1000 [00:03<00:00, 260.95it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
0%| | 0/1000 [00:00<?, ?it/s]
|
232 |
3%|▎ | 26/1000 [00:00<00:03, 254.70it/s]
|
233 |
5%|▌ | 52/1000 [00:00<00:03, 254.73it/s]
|
234 |
8%|▊ | 78/1000 [00:00<00:03, 251.95it/s]
|
235 |
10%|█ | 104/1000 [00:00<00:03, 245.93it/s]
|
236 |
13%|█▎ | 130/1000 [00:00<00:03, 250.39it/s]
|
237 |
16%|█▌ | 156/1000 [00:00<00:03, 253.08it/s]
|
238 |
18%|█▊ | 182/1000 [00:00<00:03, 253.07it/s]
|
239 |
21%|██ | 208/1000 [00:00<00:03, 255.23it/s]
|
240 |
24%|██▎ | 235/1000 [00:00<00:02, 259.07it/s]
|
241 |
26%|██▌ | 261/1000 [00:01<00:02, 251.39it/s]
|
242 |
29%|██▉ | 288/1000 [00:01<00:02, 255.49it/s]
|
243 |
32%|███▏ | 315/1000 [00:01<00:02, 257.10it/s]
|
244 |
34%|███▍ | 343/1000 [00:01<00:02, 261.15it/s]
|
245 |
37%|███▋ | 370/1000 [00:01<00:02, 263.21it/s]
|
246 |
40%|███▉ | 397/1000 [00:01<00:02, 260.74it/s]
|
247 |
42%|████▏ | 424/1000 [00:01<00:02, 258.99it/s]
|
248 |
45%|████▌ | 450/1000 [00:01<00:02, 258.60it/s]
|
249 |
48%|████▊ | 477/1000 [00:01<00:02, 259.45it/s]
|
250 |
50%|█████ | 503/1000 [00:01<00:01, 258.53it/s]
|
251 |
53%|█████▎ | 529/1000 [00:02<00:01, 258.74it/s]
|
252 |
56%|█████▌ | 556/1000 [00:02<00:01, 260.32it/s]
|
253 |
58%|█████▊ | 583/1000 [00:02<00:01, 256.77it/s]
|
254 |
61%|██████ | 609/1000 [00:02<00:01, 257.48it/s]
|
255 |
64%|██████▎ | 635/1000 [00:02<00:01, 257.78it/s]
|
256 |
66%|██████▌ | 661/1000 [00:02<00:01, 257.72it/s]
|
257 |
69%|██████▉ | 688/1000 [00:02<00:01, 259.21it/s]
|
258 |
71%|███████▏ | 714/1000 [00:02<00:01, 258.53it/s]
|
259 |
74%|███████▍ | 740/1000 [00:02<00:01, 257.56it/s]
|
260 |
77%|███████▋ | 766/1000 [00:02<00:00, 257.13it/s]
|
261 |
79%|███████▉ | 793/1000 [00:03<00:00, 260.48it/s]
|
262 |
82%|████████▏ | 820/1000 [00:03<00:00, 259.45it/s]
|
263 |
85%|████████▍ | 847/1000 [00:03<00:00, 260.11it/s]
|
264 |
87%|████████▋ | 874/1000 [00:03<00:00, 261.00it/s]
|
265 |
90%|█████████ | 901/1000 [00:03<00:00, 260.67it/s]
|
266 |
93%|█████████▎| 928/1000 [00:03<00:00, 258.07it/s]
|
267 |
95%|█████████▌| 954/1000 [00:03<00:00, 256.35it/s]
|
268 |
98%|█████████▊| 981/1000 [00:03<00:00, 258.44it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
0%| | 0/1000 [00:00<?, ?it/s]
|
270 |
3%|▎ | 27/1000 [00:00<00:03, 261.59it/s]
|
271 |
5%|▌ | 54/1000 [00:00<00:03, 256.73it/s]
|
272 |
8%|▊ | 80/1000 [00:00<00:03, 252.77it/s]
|
273 |
11%|█ | 106/1000 [00:00<00:03, 246.51it/s]
|
274 |
13%|█▎ | 131/1000 [00:00<00:03, 246.50it/s]
|
275 |
16%|█▌ | 157/1000 [00:00<00:03, 247.96it/s]
|
276 |
18%|█▊ | 182/1000 [00:00<00:03, 247.01it/s]
|
277 |
21%|██ | 208/1000 [00:00<00:03, 248.47it/s]
|
278 |
24%|██▎ | 235/1000 [00:00<00:03, 254.43it/s]
|
279 |
26%|██▌ | 261/1000 [00:01<00:02, 248.02it/s]
|
280 |
29%|██▉ | 288/1000 [00:01<00:02, 253.45it/s]
|
281 |
32%|███▏ | 315/1000 [00:01<00:02, 255.93it/s]
|
282 |
34%|███▍ | 341/1000 [00:01<00:02, 254.56it/s]
|
283 |
37%|███▋ | 367/1000 [00:01<00:02, 254.44it/s]
|
284 |
39%|███▉ | 393/1000 [00:01<00:02, 252.57it/s]
|
285 |
42%|████▏ | 419/1000 [00:01<00:02, 252.07it/s]
|
286 |
45%|████▍ | 446/1000 [00:01<00:02, 254.71it/s]
|
287 |
47%|████▋ | 472/1000 [00:01<00:02, 254.69it/s]
|
288 |
50%|████▉ | 498/1000 [00:01<00:01, 251.76it/s]
|
289 |
52%|█████▏ | 524/1000 [00:02<00:01, 250.75it/s]
|
290 |
55%|█████▌ | 550/1000 [00:02<00:01, 251.48it/s]
|
291 |
58%|█████▊ | 576/1000 [00:02<00:01, 252.07it/s]
|
292 |
60%|██████ | 602/1000 [00:02<00:01, 250.92it/s]
|
293 |
63%|██████▎ | 628/1000 [00:02<00:01, 253.39it/s]
|
294 |
65%|██████▌ | 654/1000 [00:02<00:01, 253.83it/s]
|
295 |
68%|██████▊ | 681/1000 [00:02<00:01, 256.03it/s]
|
296 |
71%|███████ | 708/1000 [00:02<00:01, 257.99it/s]
|
297 |
73%|███████▎ | 734/1000 [00:02<00:01, 256.19it/s]
|
298 |
76%|███████▌ | 760/1000 [00:03<00:00, 256.90it/s]
|
299 |
79%|███████▊ | 787/1000 [00:03<00:00, 259.13it/s]
|
300 |
81%|████████▏ | 813/1000 [00:03<00:00, 259.11it/s]
|
301 |
84%|████████▍ | 840/1000 [00:03<00:00, 260.96it/s]
|
302 |
87%|████████▋ | 867/1000 [00:03<00:00, 260.58it/s]
|
303 |
89%|████████▉ | 894/1000 [00:03<00:00, 260.70it/s]
|
304 |
92%|█████████▏| 921/1000 [00:03<00:00, 260.56it/s]
|
305 |
95%|█████████▍| 948/1000 [00:03<00:00, 259.03it/s]
|
306 |
98%|█████████▊| 975/1000 [00:03<00:00, 261.68it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
0%| | 0/1000 [00:00<?, ?it/s]
|
308 |
3%|▎ | 26/1000 [00:00<00:03, 257.97it/s]
|
309 |
5%|▌ | 52/1000 [00:00<00:03, 250.91it/s]
|
310 |
8%|▊ | 78/1000 [00:00<00:03, 248.24it/s]
|
311 |
10%|█ | 103/1000 [00:00<00:03, 243.31it/s]
|
312 |
13%|█▎ | 130/1000 [00:00<00:03, 250.80it/s]
|
313 |
16%|█▌ | 156/1000 [00:00<00:03, 252.66it/s]
|
314 |
18%|█▊ | 182/1000 [00:00<00:03, 252.87it/s]
|
315 |
21%|██ | 208/1000 [00:00<00:03, 254.80it/s]
|
316 |
24%|██▎ | 235/1000 [00:00<00:02, 258.88it/s]
|
317 |
26%|██▌ | 261/1000 [00:01<00:02, 250.89it/s]
|
318 |
29%|██▉ | 288/1000 [00:01<00:02, 255.34it/s]
|
319 |
32%|███▏ | 315/1000 [00:01<00:02, 257.25it/s]
|
320 |
34%|███▍ | 342/1000 [00:01<00:02, 260.99it/s]
|
321 |
37%|███▋ | 369/1000 [00:01<00:02, 262.99it/s]
|
322 |
40%|███▉ | 396/1000 [00:01<00:02, 258.85it/s]
|
323 |
42%|████▏ | 422/1000 [00:01<00:02, 257.36it/s]
|
324 |
45%|████▍ | 448/1000 [00:01<00:02, 256.77it/s]
|
325 |
47%|████▋ | 474/1000 [00:01<00:02, 254.85it/s]
|
326 |
50%|█████ | 500/1000 [00:01<00:01, 251.99it/s]
|
327 |
53%|█████▎ | 526/1000 [00:02<00:01, 251.64it/s]
|
328 |
55%|█████▌ | 552/1000 [00:02<00:01, 251.02it/s]
|
329 |
58%|█████▊ | 578/1000 [00:02<00:01, 249.20it/s]
|
330 |
60%|██████ | 603/1000 [00:02<00:01, 247.32it/s]
|
331 |
63%|██████▎ | 628/1000 [00:02<00:01, 248.00it/s]
|
332 |
65%|██████▌ | 653/1000 [00:02<00:01, 247.76it/s]
|
333 |
68%|██████▊ | 679/1000 [00:02<00:01, 249.66it/s]
|
334 |
70%|███████ | 705/1000 [00:02<00:01, 251.98it/s]
|
335 |
73%|███████▎ | 731/1000 [00:02<00:01, 247.36it/s]
|
336 |
76%|███████▌ | 756/1000 [00:02<00:00, 248.10it/s]
|
337 |
78%|███████▊ | 782/1000 [00:03<00:00, 249.49it/s]
|
338 |
81%|████████ | 808/1000 [00:03<00:00, 249.74it/s]
|
339 |
83%|████████▎ | 833/1000 [00:03<00:00, 249.70it/s]
|
340 |
86%|████████▌ | 858/1000 [00:03<00:00, 249.68it/s]
|
341 |
88%|████████▊ | 885/1000 [00:03<00:00, 255.48it/s]
|
342 |
91%|█████████ | 911/1000 [00:03<00:00, 254.38it/s]
|
343 |
94%|█████████▎| 937/1000 [00:03<00:00, 252.65it/s]
|
344 |
96%|█████████▋| 963/1000 [00:03<00:00, 253.32it/s]
|
345 |
99%|█████████▉| 989/1000 [00:03<00:00, 252.52it/s]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
346 |
0%| | 0/1000 [00:00<?, ?it/s]
|
347 |
3%|▎ | 26/1000 [00:00<00:03, 253.14it/s]
|
348 |
5%|▌ | 52/1000 [00:00<00:03, 253.10it/s]
|
349 |
8%|▊ | 78/1000 [00:00<00:03, 250.61it/s]
|
350 |
10%|█ | 104/1000 [00:00<00:03, 247.09it/s]
|
351 |
13%|█▎ | 131/1000 [00:00<00:03, 252.06it/s]
|
352 |
16%|█▌ | 158/1000 [00:00<00:03, 254.63it/s]
|
353 |
18%|█▊ | 184/1000 [00:00<00:03, 256.07it/s]
|
354 |
21%|██ | 211/1000 [00:00<00:03, 257.36it/s]
|
355 |
24%|██▎ | 237/1000 [00:00<00:02, 257.38it/s]
|
356 |
26%|██▋ | 263/1000 [00:01<00:02, 248.20it/s]
|
357 |
29%|██▉ | 289/1000 [00:01<00:02, 249.11it/s]
|
358 |
32%|███▏ | 315/1000 [00:01<00:02, 249.91it/s]
|
359 |
34%|███▍ | 341/1000 [00:01<00:02, 250.90it/s]
|
360 |
37%|███▋ | 367/1000 [00:01<00:02, 251.46it/s]
|
361 |
39%|███▉ | 393/1000 [00:01<00:02, 250.64it/s]
|
362 |
42%|████▏ | 419/1000 [00:01<00:02, 249.01it/s]
|
363 |
44%|████▍ | 444/1000 [00:01<00:02, 249.15it/s]
|
364 |
47%|████▋ | 470/1000 [00:01<00:02, 251.02it/s]
|
365 |
50%|████▉ | 496/1000 [00:01<00:01, 252.45it/s]
|
366 |
52%|█████▏ | 523/1000 [00:02<00:01, 255.46it/s]
|
367 |
55%|█████▌ | 550/1000 [00:02<00:01, 258.11it/s]
|
368 |
58%|█████▊ | 576/1000 [00:02<00:01, 258.12it/s]
|
369 |
60%|██████ | 602/1000 [00:02<00:01, 254.83it/s]
|
370 |
63%|██████▎ | 628/1000 [00:02<00:01, 256.23it/s]
|
371 |
65%|██████▌ | 654/1000 [00:02<00:01, 253.82it/s]
|
372 |
68%|██████▊ | 680/1000 [00:02<00:01, 253.55it/s]
|
373 |
71%|███████ | 706/1000 [00:02<00:01, 254.06it/s]
|
374 |
73%|███████▎ | 732/1000 [00:02<00:01, 252.53it/s]
|
375 |
76%|███████▌ | 759/1000 [00:02<00:00, 255.13it/s]
|
376 |
79%|███████▊ | 786/1000 [00:03<00:00, 257.97it/s]
|
377 |
81%|████████ | 812/1000 [00:03<00:00, 258.56it/s]
|
378 |
84%|████████▍ | 839/1000 [00:03<00:00, 260.34it/s]
|
379 |
87%|████████▋ | 866/1000 [00:03<00:00, 258.71it/s]
|
380 |
89%|████████▉ | 892/1000 [00:03<00:00, 258.64it/s]
|
381 |
92%|█████████▏| 918/1000 [00:03<00:00, 254.47it/s]
|
382 |
94%|█████████▍| 944/1000 [00:03<00:00, 253.47it/s]
|
383 |
97%|█████████▋| 970/1000 [00:03<00:00, 254.14it/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 @ 13:01:54] [setup] RAM Tracking...
|
11 |
+
[codecarbon INFO @ 13:01:54] [setup] GPU Tracking...
|
12 |
+
[codecarbon INFO @ 13:01:54] Tracking Nvidia GPU via pynvml
|
13 |
+
[codecarbon DEBUG @ 13:01:54] GPU available. Starting setup
|
14 |
+
[codecarbon INFO @ 13:01:54] [setup] CPU Tracking...
|
15 |
+
[codecarbon DEBUG @ 13:01:54] Not using PowerGadget, an exception occurred while instantiating IntelPowerGadget : Platform not supported by Intel Power Gadget
|
16 |
+
[codecarbon DEBUG @ 13:01:54] 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 @ 13:01:54] Not using PowerMetrics, an exception occurred while instantiating Powermetrics : Platform not supported by Powermetrics
|
18 |
+
[codecarbon WARNING @ 13:01:54] No CPU tracking mode found. Falling back on CPU constant mode.
|
19 |
+
[codecarbon WARNING @ 13:01:55] We saw that you have a AMD EPYC 7R32 but we don't know it. Please contact us.
|
20 |
+
[codecarbon INFO @ 13:01:55] CPU Model on constant consumption mode: AMD EPYC 7R32
|
21 |
+
[codecarbon INFO @ 13:01:55] >>> Tracker's metadata:
|
22 |
+
[codecarbon INFO @ 13:01:55] Platform system: Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35
|
23 |
+
[codecarbon INFO @ 13:01:55] Python version: 3.9.20
|
24 |
+
[codecarbon INFO @ 13:01:55] CodeCarbon version: 2.5.1
|
25 |
+
[codecarbon INFO @ 13:01:55] Available RAM : 186.705 GB
|
26 |
+
[codecarbon INFO @ 13:01:55] CPU count: 48
|
27 |
+
[codecarbon INFO @ 13:01:55] CPU model: AMD EPYC 7R32
|
28 |
+
[codecarbon INFO @ 13:01:55] GPU count: 1
|
29 |
+
[codecarbon INFO @ 13:01:55] GPU model: 1 x NVIDIA A10G
|
30 |
+
[codecarbon DEBUG @ 13:01:56] Not running on AWS
|
31 |
+
[codecarbon DEBUG @ 13:01:57] Not running on Azure
|
32 |
+
[codecarbon DEBUG @ 13:01:58] Not running on GCP
|
33 |
+
[codecarbon INFO @ 13:01:58] Saving emissions data to file /runs/text_classification/distilbert/distilbert-base-uncased-finetuned-sst-2-english/2024-10-08-13-01-46/codecarbon.csv
|
34 |
+
[codecarbon DEBUG @ 13:01:58] EmissionsData(timestamp='2024-10-08T13:01:58', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=0.0022171269999944343, 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 @ 13:01:59] Energy consumed for RAM : 0.000000 kWh. RAM Power : 0.27339935302734375 W
|
38 |
+
[codecarbon DEBUG @ 13:01:59] RAM : 0.27 W during 0.42 s [measurement time: 0.0005]
|
39 |
+
[codecarbon INFO @ 13:01:59] Energy consumed for all GPUs : 0.000007 kWh. Total GPU Power : 62.61794011262714 W
|
40 |
+
[codecarbon DEBUG @ 13:01:59] GPU : 62.62 W during 0.42 s [measurement time: 0.0022]
|
41 |
+
[codecarbon INFO @ 13:01:59] Energy consumed for all CPUs : 0.000005 kWh. Total CPU Power : 42.5 W
|
42 |
+
[codecarbon DEBUG @ 13:01:59] CPU : 42.50 W during 0.43 s [measurement time: 0.0000]
|
43 |
+
[codecarbon INFO @ 13:01:59] 0.000012 kWh of electricity used since the beginning.
|
44 |
+
[codecarbon DEBUG @ 13:01:59] last_duration=0.423816565999914
|
45 |
+
------------------------
|
46 |
+
[codecarbon DEBUG @ 13:01:59] EmissionsData(timestamp='2024-10-08T13:01:59', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=0.42697465799994916, emissions=4.598363284616753e-06, emissions_rate=1.0769639833325424e-05, cpu_power=42.5, gpu_power=62.61794011262714, ram_power=0.27339935302734375, cpu_energy=5.039404527083176e-06, gpu_energy=7.385561463999803e-06, ram_energy=3.218663418082601e-08, energy_consumed=1.2457152625263805e-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 @ 13:01:59] EmissionsData(timestamp='2024-10-08T13:01:59', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=0.0022345670000731843, emissions=4.598363284616753e-06, emissions_rate=0.0020578319130579443, cpu_power=42.5, gpu_power=62.61794011262714, ram_power=0.27339935302734375, cpu_energy=5.039404527083176e-06, gpu_energy=7.385561463999803e-06, ram_energy=3.218663418082601e-08, energy_consumed=1.2457152625263805e-05, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
48 |
+
|
49 |
0%| | 0/1000 [00:00<?, ?it/s]
|
50 |
2%|▎ | 25/1000 [00:00<00:04, 240.73it/s]
|
51 |
5%|▌ | 50/1000 [00:00<00:03, 239.68it/s]
|
52 |
7%|▋ | 74/1000 [00:00<00:03, 239.07it/s]
|
53 |
10%|▉ | 98/1000 [00:00<00:03, 238.38it/s]
|
54 |
12%|█▏ | 123/1000 [00:00<00:03, 240.99it/s]
|
55 |
15%|█▍ | 148/1000 [00:00<00:03, 240.86it/s]
|
56 |
17%|█▋ | 173/1000 [00:00<00:03, 243.66it/s]
|
57 |
20%|█▉ | 198/1000 [00:00<00:03, 243.66it/s]
|
58 |
22%|██▏ | 223/1000 [00:00<00:03, 244.09it/s]
|
59 |
25%|██▍ | 248/1000 [00:01<00:03, 243.10it/s]
|
60 |
27%|██▋ | 273/1000 [00:01<00:03, 241.62it/s]
|
61 |
30%|██▉ | 298/1000 [00:01<00:02, 243.21it/s]
|
62 |
32%|███▎ | 325/1000 [00:01<00:02, 248.72it/s]
|
63 |
35%|███▌ | 352/1000 [00:01<00:02, 254.48it/s]
|
64 |
38%|███▊ | 379/1000 [00:01<00:02, 258.46it/s]
|
65 |
40%|████ | 405/1000 [00:01<00:02, 253.37it/s]
|
66 |
43%|████▎ | 431/1000 [00:01<00:02, 255.03it/s]
|
67 |
46%|████▌ | 457/1000 [00:01<00:02, 255.15it/s]
|
68 |
48%|████▊ | 484/1000 [00:01<00:01, 258.12it/s]
|
69 |
51%|█████ | 510/1000 [00:02<00:01, 257.83it/s]
|
70 |
54%|█████▎ | 536/1000 [00:02<00:01, 258.22it/s]
|
71 |
56%|█████▋ | 563/1000 [00:02<00:01, 259.76it/s]
|
72 |
59%|█████▉ | 589/1000 [00:02<00:01, 258.08it/s]
|
73 |
62%|██████▏ | 616/1000 [00:02<00:01, 258.99it/s]
|
74 |
64%|██████▍ | 642/1000 [00:02<00:01, 258.11it/s]
|
75 |
67%|██████▋ | 669/1000 [00:02<00:01, 259.99it/s]
|
76 |
70%|██████▉ | 696/1000 [00:02<00:01, 261.94it/s]
|
77 |
72%|███████▏ | 723/1000 [00:02<00:01, 257.46it/s]
|
78 |
75%|███████▌ | 750/1000 [00:02<00:00, 258.43it/s]
|
79 |
78%|███████▊ | 777/1000 [00:03<00:00, 261.16it/s]
|
80 |
80%|████████ | 804/1000 [00:03<00:00, 262.30it/s]
|
81 |
83%|████████▎ | 831/1000 [00:03<00:00, 262.46it/s]
|
82 |
86%|████████▌ | 858/1000 [00:03<00:00, 262.74it/s]
|
83 |
89%|████████▊ | 886/1000 [00:03<00:00, 265.29it/s]
|
84 |
91%|█████████▏| 913/1000 [00:03<00:00, 264.31it/s]
|
85 |
94%|█████████▍| 940/1000 [00:03<00:00, 263.50it/s]
|
86 |
97%|█████████▋| 967/1000 [00:03<00:00, 262.46it/s]
|
87 |
99%|█████████▉| 994/1000 [00:03<00:00, 262.85it/s]
|
88 |
+
[codecarbon WARNING @ 13:02:03] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
89 |
+
[codecarbon INFO @ 13:02:03] Energy consumed for RAM : 0.000000 kWh. RAM Power : 0.344088077545166 W
|
90 |
+
[codecarbon DEBUG @ 13:02:03] RAM : 0.34 W during 3.93 s [measurement time: 0.0004]
|
91 |
+
[codecarbon INFO @ 13:02:03] Energy consumed for all GPUs : 0.000187 kWh. Total GPU Power : 164.50826052714714 W
|
92 |
+
[codecarbon DEBUG @ 13:02:03] GPU : 164.51 W during 3.93 s [measurement time: 0.0053]
|
93 |
+
[codecarbon INFO @ 13:02:03] Energy consumed for all CPUs : 0.000051 kWh. Total CPU Power : 42.5 W
|
94 |
+
[codecarbon DEBUG @ 13:02:03] CPU : 42.50 W during 3.93 s [measurement time: 0.0000]
|
95 |
+
[codecarbon INFO @ 13:02:03] 0.000239 kWh of electricity used since the beginning.
|
96 |
+
[codecarbon DEBUG @ 13:02:03] last_duration=3.9250225560000445
|
97 |
+
------------------------
|
98 |
+
[codecarbon DEBUG @ 13:02:03] EmissionsData(timestamp='2024-10-08T13:02:03', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=3.9313579220000747, emissions=8.809180558455209e-05, emissions_rate=2.2407475313195464e-05, cpu_power=42.5, gpu_power=164.50826052714714, ram_power=0.344088077545166, cpu_energy=5.1450096922916725e-05, gpu_energy=0.00018678681609600022, ram_energy=4.073608845729088e-07, energy_consumed=0.00023864427390348986, 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 @ 13:02:03] EmissionsData(timestamp='2024-10-08T13:02:03', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=0.0020242140000164, emissions=8.809180558455209e-05, emissions_rate=0.04351901804050282, cpu_power=42.5, gpu_power=164.50826052714714, ram_power=0.344088077545166, cpu_energy=5.1450096922916725e-05, gpu_energy=0.00018678681609600022, ram_energy=4.073608845729088e-07, energy_consumed=0.00023864427390348986, 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%|▎ | 27/1000 [00:00<00:03, 261.83it/s]
|
103 |
5%|▌ | 54/1000 [00:00<00:03, 259.36it/s]
|
104 |
8%|▊ | 80/1000 [00:00<00:03, 256.36it/s]
|
105 |
11%|█ | 106/1000 [00:00<00:03, 251.00it/s]
|
106 |
13%|█▎ | 133/1000 [00:00<00:03, 255.32it/s]
|
107 |
16%|█▌ | 160/1000 [00:00<00:03, 257.75it/s]
|
108 |
19%|█▊ | 186/1000 [00:00<00:03, 258.25it/s]
|
109 |
21%|██▏ | 213/1000 [00:00<00:03, 260.13it/s]
|
110 |
24%|██▍ | 240/1000 [00:00<00:02, 261.59it/s]
|
111 |
27%|██▋ | 267/1000 [00:01<00:02, 254.67it/s]
|
112 |
29%|██▉ | 294/1000 [00:01<00:02, 258.72it/s]
|
113 |
32%|███▏ | 321/1000 [00:01<00:02, 260.10it/s]
|
114 |
35%|███▍ | 348/1000 [00:01<00:02, 262.56it/s]
|
115 |
38%|███▊ | 375/1000 [00:01<00:02, 264.45it/s]
|
116 |
40%|████ | 402/1000 [00:01<00:02, 261.13it/s]
|
117 |
43%|████▎ | 429/1000 [00:01<00:02, 259.33it/s]
|
118 |
46%|████▌ | 455/1000 [00:01<00:02, 258.04it/s]
|
119 |
48%|████▊ | 482/1000 [00:01<00:01, 260.32it/s]
|
120 |
51%|█████ | 509/1000 [00:01<00:01, 259.16it/s]
|
121 |
54%|█████▎ | 535/1000 [00:02<00:01, 257.88it/s]
|
122 |
56%|█████▌ | 561/1000 [00:02<00:01, 257.45it/s]
|
123 |
59%|█████▊ | 587/1000 [00:02<00:01, 255.24it/s]
|
124 |
61%|██████▏ | 613/1000 [00:02<00:01, 255.02it/s]
|
125 |
64%|██████▍ | 639/1000 [00:02<00:01, 253.69it/s]
|
126 |
67%|██████▋ | 666/1000 [00:02<00:01, 257.24it/s]
|
127 |
69%|██████▉ | 693/1000 [00:02<00:01, 259.29it/s]
|
128 |
72%|███████▏ | 719/1000 [00:02<00:01, 256.61it/s]
|
129 |
74%|███████▍ | 745/1000 [00:02<00:00, 257.58it/s]
|
130 |
77%|███████▋ | 771/1000 [00:02<00:00, 257.89it/s]
|
131 |
80%|███████▉ | 798/1000 [00:03<00:00, 259.12it/s]
|
132 |
82%|████████▏ | 824/1000 [00:03<00:00, 256.32it/s]
|
133 |
85%|████████▌ | 850/1000 [00:03<00:00, 255.23it/s]
|
134 |
88%|████████▊ | 876/1000 [00:03<00:00, 256.48it/s]
|
135 |
90%|█████████ | 903/1000 [00:03<00:00, 257.75it/s]
|
136 |
93%|█████████▎| 930/1000 [00:03<00:00, 259.74it/s]
|
137 |
96%|█████████▌| 956/1000 [00:03<00:00, 258.72it/s]
|
138 |
98%|█████████▊| 983/1000 [00:03<00:00, 259.60it/s]
|
139 |
+
[codecarbon WARNING @ 13:02:07] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
140 |
+
[codecarbon INFO @ 13:02:07] Energy consumed for RAM : 0.000001 kWh. RAM Power : 0.3441166877746582 W
|
141 |
+
[codecarbon DEBUG @ 13:02:07] RAM : 0.34 W during 3.88 s [measurement time: 0.0004]
|
142 |
+
[codecarbon INFO @ 13:02:07] Energy consumed for all GPUs : 0.000360 kWh. Total GPU Power : 161.22114466323345 W
|
143 |
+
[codecarbon DEBUG @ 13:02:07] GPU : 161.22 W during 3.88 s [measurement time: 0.0022]
|
144 |
+
[codecarbon INFO @ 13:02:07] Energy consumed for all CPUs : 0.000097 kWh. Total CPU Power : 42.5 W
|
145 |
+
[codecarbon DEBUG @ 13:02:07] CPU : 42.50 W during 3.88 s [measurement time: 0.0000]
|
146 |
+
[codecarbon INFO @ 13:02:07] 0.000458 kWh of electricity used since the beginning.
|
147 |
+
[codecarbon DEBUG @ 13:02:07] last_duration=3.8756087210000487
|
148 |
+
------------------------
|
149 |
+
[codecarbon DEBUG @ 13:02:07] EmissionsData(timestamp='2024-10-08T13:02:07', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=3.878755604000048, emissions=0.00016921236807989048, emissions_rate=4.362542664595487e-05, cpu_power=42.5, gpu_power=161.22114466323345, ram_power=0.3441166877746582, cpu_energy=9.723976907152746e-05, gpu_energy=0.0003603855660860005, ram_energy=7.778324010774964e-07, energy_consumed=0.00045840316755860547, 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)
|
150 |
+
[codecarbon DEBUG @ 13:02:07] EmissionsData(timestamp='2024-10-08T13:02:07', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=0.002066713999965941, emissions=0.00016921236807989048, emissions_rate=0.08187507709469188, cpu_power=42.5, gpu_power=161.22114466323345, ram_power=0.3441166877746582, cpu_energy=9.723976907152746e-05, gpu_energy=0.0003603855660860005, ram_energy=7.778324010774964e-07, energy_consumed=0.00045840316755860547, 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 |
+
|
152 |
0%| | 0/1000 [00:00<?, ?it/s]
|
153 |
3%|▎ | 26/1000 [00:00<00:03, 257.04it/s]
|
154 |
5%|▌ | 52/1000 [00:00<00:03, 249.03it/s]
|
155 |
8%|▊ | 77/1000 [00:00<00:03, 244.75it/s]
|
156 |
10%|█ | 102/1000 [00:00<00:03, 242.10it/s]
|
157 |
13%|█▎ | 128/1000 [00:00<00:03, 246.00it/s]
|
158 |
15%|█▌ | 153/1000 [00:00<00:03, 246.94it/s]
|
159 |
18%|█▊ | 179/1000 [00:00<00:03, 248.80it/s]
|
160 |
20%|██ | 205/1000 [00:00<00:03, 249.85it/s]
|
161 |
23%|██▎ | 231/1000 [00:00<00:03, 250.43it/s]
|
162 |
26%|██▌ | 257/1000 [00:01<00:03, 243.45it/s]
|
163 |
28%|██▊ | 282/1000 [00:01<00:02, 245.33it/s]
|
164 |
31%|███ | 308/1000 [00:01<00:02, 248.70it/s]
|
165 |
33%|███▎ | 334/1000 [00:01<00:02, 249.35it/s]
|
166 |
36%|███▌ | 360/1000 [00:01<00:02, 251.10it/s]
|
167 |
39%|███▊ | 386/1000 [00:01<00:02, 251.26it/s]
|
168 |
41%|████ | 412/1000 [00:01<00:02, 248.87it/s]
|
169 |
44%|████▎ | 437/1000 [00:01<00:02, 248.55it/s]
|
170 |
46%|████▌ | 462/1000 [00:01<00:02, 248.03it/s]
|
171 |
49%|████▉ | 488/1000 [00:01<00:02, 249.33it/s]
|
172 |
51%|█████▏ | 513/1000 [00:02<00:01, 249.12it/s]
|
173 |
54%|█████▍ | 539/1000 [00:02<00:01, 248.68it/s]
|
174 |
56%|█████▋ | 565/1000 [00:02<00:01, 249.15it/s]
|
175 |
59%|█████▉ | 590/1000 [00:02<00:01, 247.38it/s]
|
176 |
62%|██████▏ | 615/1000 [00:02<00:01, 247.13it/s]
|
177 |
64%|██████▍ | 640/1000 [00:02<00:01, 245.57it/s]
|
178 |
67%|██████▋ | 666/1000 [00:02<00:01, 247.18it/s]
|
179 |
69%|██████▉ | 692/1000 [00:02<00:01, 249.23it/s]
|
180 |
72%|███████▏ | 717/1000 [00:02<00:01, 248.36it/s]
|
181 |
74%|███████▍ | 742/1000 [00:02<00:01, 247.85it/s]
|
182 |
77%|███████▋ | 767/1000 [00:03<00:00, 246.47it/s]
|
183 |
79%|███████▉ | 793/1000 [00:03<00:00, 248.62it/s]
|
184 |
82%|████████▏ | 819/1000 [00:03<00:00, 249.28it/s]
|
185 |
84%|████████▍ | 845/1000 [00:03<00:00, 250.82it/s]
|
186 |
87%|████████▋ | 871/1000 [00:03<00:00, 252.75it/s]
|
187 |
90%|████████▉ | 897/1000 [00:03<00:00, 252.70it/s]
|
188 |
92%|█████████▏| 923/1000 [00:03<00:00, 252.33it/s]
|
189 |
95%|█████████▍| 949/1000 [00:03<00:00, 249.49it/s]
|
190 |
98%|█████████▊| 975/1000 [00:03<00:00, 251.17it/s]
|
191 |
+
[codecarbon WARNING @ 13:02:11] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
192 |
+
[codecarbon INFO @ 13:02:11] Energy consumed for RAM : 0.000001 kWh. RAM Power : 0.3441195487976074 W
|
193 |
+
[codecarbon DEBUG @ 13:02:11] RAM : 0.34 W during 4.02 s [measurement time: 0.0004]
|
194 |
+
[codecarbon INFO @ 13:02:11] Energy consumed for all GPUs : 0.000547 kWh. Total GPU Power : 166.59459293584817 W
|
195 |
+
[codecarbon DEBUG @ 13:02:11] GPU : 166.59 W during 4.02 s [measurement time: 0.0023]
|
196 |
+
[codecarbon INFO @ 13:02:11] Energy consumed for all CPUs : 0.000145 kWh. Total CPU Power : 42.5 W
|
197 |
+
[codecarbon DEBUG @ 13:02:11] CPU : 42.50 W during 4.03 s [measurement time: 0.0000]
|
198 |
+
[codecarbon INFO @ 13:02:11] 0.000692 kWh of electricity used since the beginning.
|
199 |
+
[codecarbon DEBUG @ 13:02:11] last_duration=4.0223104200000535
|
200 |
+
------------------------
|
201 |
+
[codecarbon DEBUG @ 13:02:11] EmissionsData(timestamp='2024-10-08T13:02:11', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=4.025530553999943, emissions=0.0002556195272544281, emissions_rate=6.349958690549085e-05, cpu_power=42.5, gpu_power=166.59459293584817, ram_power=0.3441195487976074, cpu_energy=0.0001447620110951379, gpu_energy=0.0005465593261360004, ram_energy=1.1623287851676462e-06, energy_consumed=0.000692483666016306, 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 @ 13:02:11] EmissionsData(timestamp='2024-10-08T13:02:11', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=0.0020257639999954336, emissions=0.0002556195272544281, emissions_rate=0.12618425801574334, cpu_power=42.5, gpu_power=166.59459293584817, ram_power=0.3441195487976074, cpu_energy=0.0001447620110951379, gpu_energy=0.0005465593261360004, ram_energy=1.1623287851676462e-06, energy_consumed=0.000692483666016306, 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 |
2%|▎ | 25/1000 [00:00<00:03, 249.12it/s]
|
206 |
5%|▌ | 50/1000 [00:00<00:03, 244.37it/s]
|
207 |
8%|▊ | 75/1000 [00:00<00:03, 243.61it/s]
|
208 |
10%|█ | 100/1000 [00:00<00:03, 241.96it/s]
|
209 |
13%|█▎ | 126/1000 [00:00<00:03, 246.54it/s]
|
210 |
15%|█▌ | 151/1000 [00:00<00:03, 246.34it/s]
|
211 |
18%|█▊ | 177/1000 [00:00<00:03, 250.17it/s]
|
212 |
20%|██ | 203/1000 [00:00<00:03, 249.16it/s]
|
213 |
23%|██▎ | 229/1000 [00:00<00:03, 249.91it/s]
|
214 |
25%|██▌ | 254/1000 [00:01<00:03, 245.04it/s]
|
215 |
28%|██▊ | 279/1000 [00:01<00:02, 245.16it/s]
|
216 |
30%|███ | 305/1000 [00:01<00:02, 246.77it/s]
|
217 |
33%|███▎ | 331/1000 [00:01<00:02, 248.30it/s]
|
218 |
36%|███▌ | 357/1000 [00:01<00:02, 249.85it/s]
|
219 |
38%|███▊ | 383/1000 [00:01<00:02, 250.67it/s]
|
220 |
41%|████ | 409/1000 [00:01<00:02, 247.40it/s]
|
221 |
43%|████▎ | 434/1000 [00:01<00:02, 246.74it/s]
|
222 |
46%|████▌ | 459/1000 [00:01<00:02, 247.10it/s]
|
223 |
48%|████▊ | 485/1000 [00:01<00:02, 247.60it/s]
|
224 |
51%|█████ | 510/1000 [00:02<00:01, 247.92it/s]
|
225 |
54%|█████▎ | 535/1000 [00:02<00:01, 247.99it/s]
|
226 |
56%|█████▌ | 560/1000 [00:02<00:01, 247.73it/s]
|
227 |
58%|█████▊ | 585/1000 [00:02<00:01, 245.50it/s]
|
228 |
61%|██████ | 610/1000 [00:02<00:01, 246.33it/s]
|
229 |
64%|██████▎ | 635/1000 [00:02<00:01, 246.67it/s]
|
230 |
66%|██████▌ | 660/1000 [00:02<00:01, 247.07it/s]
|
231 |
69%|██████▊ | 686/1000 [00:02<00:01, 249.32it/s]
|
232 |
71%|███████ | 712/1000 [00:02<00:01, 250.57it/s]
|
233 |
74%|███████▍ | 738/1000 [00:02<00:01, 247.79it/s]
|
234 |
76%|███████▋ | 763/1000 [00:03<00:00, 246.53it/s]
|
235 |
79%|███████▉ | 789/1000 [00:03<00:00, 249.12it/s]
|
236 |
81%|████████▏ | 814/1000 [00:03<00:00, 248.38it/s]
|
237 |
84%|████████▍ | 840/1000 [00:03<00:00, 249.67it/s]
|
238 |
86%|████████▋ | 865/1000 [00:03<00:00, 248.89it/s]
|
239 |
89%|████████▉ | 891/1000 [00:03<00:00, 250.65it/s]
|
240 |
92%|█████████▏| 917/1000 [00:03<00:00, 248.36it/s]
|
241 |
94%|█████████▍| 943/1000 [00:03<00:00, 250.04it/s]
|
242 |
97%|█████████▋| 969/1000 [00:03<00:00, 250.44it/s]
|
243 |
+
[codecarbon WARNING @ 13:02:15] Background scheduler didn't run for a long period (4s), results might be inaccurate
|
244 |
+
[codecarbon INFO @ 13:02:15] Energy consumed for RAM : 0.000002 kWh. RAM Power : 0.3441195487976074 W
|
245 |
+
[codecarbon DEBUG @ 13:02:15] RAM : 0.34 W during 4.04 s [measurement time: 0.0004]
|
246 |
+
[codecarbon INFO @ 13:02:15] Energy consumed for all GPUs : 0.000728 kWh. Total GPU Power : 161.81244025187812 W
|
247 |
+
[codecarbon DEBUG @ 13:02:15] GPU : 161.81 W during 4.04 s [measurement time: 0.0024]
|
248 |
+
[codecarbon INFO @ 13:02:15] Energy consumed for all CPUs : 0.000192 kWh. Total CPU Power : 42.5 W
|
249 |
+
[codecarbon DEBUG @ 13:02:15] CPU : 42.50 W during 4.04 s [measurement time: 0.0000]
|
250 |
+
[codecarbon INFO @ 13:02:15] 0.000922 kWh of electricity used since the beginning.
|
251 |
+
[codecarbon DEBUG @ 13:02:15] last_duration=4.036086341999976
|
252 |
+
------------------------
|
253 |
+
[codecarbon DEBUG @ 13:02:15] EmissionsData(timestamp='2024-10-08T13:02:15', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=4.03931347199989, emissions=0.00034034244004413366, emissions_rate=8.425749633034248e-05, cpu_power=42.5, gpu_power=161.81244025187812, ram_power=0.3441195487976074, cpu_energy=0.00019244719350277567, gpu_energy=0.00072800613796, ram_energy=1.5481412498839128e-06, energy_consumed=0.0009220014727126596, 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 |
+
[codecarbon DEBUG @ 13:02:15] EmissionsData(timestamp='2024-10-08T13:02:15', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=0.002023970999971425, emissions=0.00034034244004413366, emissions_rate=0.16815578881759605, cpu_power=42.5, gpu_power=161.81244025187812, ram_power=0.3441195487976074, cpu_energy=0.00019244719350277567, gpu_energy=0.00072800613796, ram_energy=1.5481412498839128e-06, energy_consumed=0.0009220014727126596, 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)
|
255 |
+
|
256 |
0%| | 0/1000 [00:00<?, ?it/s]
|
257 |
2%|▎ | 25/1000 [00:00<00:03, 247.32it/s]
|
258 |
5%|▌ | 50/1000 [00:00<00:03, 245.27it/s]
|
259 |
8%|▊ | 75/1000 [00:00<00:03, 242.61it/s]
|
260 |
10%|█ | 100/1000 [00:00<00:03, 241.01it/s]
|
261 |
12%|█▎ | 125/1000 [00:00<00:03, 243.84it/s]
|
262 |
15%|█▌ | 150/1000 [00:00<00:03, 243.68it/s]
|
263 |
18%|█▊ | 176/1000 [00:00<00:03, 246.66it/s]
|
264 |
20%|██ | 201/1000 [00:00<00:03, 245.34it/s]
|
265 |
23%|██▎ | 227/1000 [00:00<00:03, 246.91it/s]
|
266 |
25%|██▌ | 252/1000 [00:01<00:03, 243.73it/s]
|
267 |
28%|██▊ | 279/1000 [00:01<00:02, 249.11it/s]
|
268 |
31%|███ | 306/1000 [00:01<00:02, 253.58it/s]
|
269 |
33%|███▎ | 333/1000 [00:01<00:02, 256.20it/s]
|
270 |
36%|███▌ | 359/1000 [00:01<00:02, 256.61it/s]
|
271 |
38%|███▊ | 385/1000 [00:01<00:02, 256.97it/s]
|
272 |
41%|████ | 411/1000 [00:01<00:02, 254.69it/s]
|
273 |
44%|████▎ | 437/1000 [00:01<00:02, 255.53it/s]
|
274 |
46%|████▋ | 463/1000 [00:01<00:02, 255.22it/s]
|
275 |
49%|████▉ | 490/1000 [00:01<00:01, 257.52it/s]
|
276 |
52%|█████▏ | 517/1000 [00:02<00:01, 258.50it/s]
|
277 |
54%|█████▍ | 543/1000 [00:02<00:01, 257.53it/s]
|
278 |
57%|█████▋ | 569/1000 [00:02<00:01, 255.49it/s]
|
279 |
60%|█████▉ | 595/1000 [00:02<00:01, 253.01it/s]
|
280 |
62%|██████▏ | 622/1000 [00:02<00:01, 254.84it/s]
|
281 |
65%|██████▍ | 648/1000 [00:02<00:01, 254.98it/s]
|
282 |
68%|██████▊ | 675/1000 [00:02<00:01, 257.11it/s]
|
283 |
70%|███████ | 702/1000 [00:02<00:01, 259.58it/s]
|
284 |
73%|███████▎ | 728/1000 [00:02<00:01, 254.25it/s]
|
285 |
76%|███████▌ | 755/1000 [00:02<00:00, 256.17it/s]
|
286 |
78%|███████▊ | 782/1000 [00:03<00:00, 259.33it/s]
|
287 |
81%|████████ | 809/1000 [00:03<00:00, 258.70it/s]
|
288 |
84%|████████▎ | 835/1000 [00:03<00:00, 258.03it/s]
|
289 |
86%|████████▌ | 861/1000 [00:03<00:00, 257.42it/s]
|
290 |
89%|████████▉ | 888/1000 [00:03<00:00, 259.85it/s]
|
291 |
91%|█████████▏| 914/1000 [00:03<00:00, 256.92it/s]
|
292 |
94%|█████████▍| 941/1000 [00:03<00:00, 257.38it/s]
|
293 |
97%|█████████▋| 968/1000 [00:03<00:00, 259.22it/s]
|
294 |
+
[codecarbon WARNING @ 13:02:19] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
295 |
+
[codecarbon INFO @ 13:02:19] Energy consumed for RAM : 0.000002 kWh. RAM Power : 0.3441195487976074 W
|
296 |
+
[codecarbon DEBUG @ 13:02:19] RAM : 0.34 W during 3.94 s [measurement time: 0.0004]
|
297 |
+
[codecarbon INFO @ 13:02:19] Energy consumed for all GPUs : 0.000913 kWh. Total GPU Power : 169.19881768534145 W
|
298 |
+
[codecarbon DEBUG @ 13:02:19] GPU : 169.20 W during 3.94 s [measurement time: 0.0036]
|
299 |
+
[codecarbon INFO @ 13:02:19] Energy consumed for all CPUs : 0.000239 kWh. Total CPU Power : 42.5 W
|
300 |
+
[codecarbon DEBUG @ 13:02:19] CPU : 42.50 W during 3.94 s [measurement time: 0.0000]
|
301 |
+
[codecarbon INFO @ 13:02:19] 0.001154 kWh of electricity used since the beginning.
|
302 |
+
[codecarbon DEBUG @ 13:02:19] last_duration=3.9353076109999847
|
303 |
+
------------------------
|
304 |
+
[codecarbon DEBUG @ 13:02:19] EmissionsData(timestamp='2024-10-08T13:02:19', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=3.939801181000007, emissions=0.00042593804655264846, emissions_rate=0.00010811155867630258, cpu_power=42.5, gpu_power=169.19881768534145, ram_power=0.3441195487976074, cpu_energy=0.00023895755629652494, gpu_energy=0.0009130015637339997, ram_energy=1.924322054952754e-06, energy_consumed=0.0011538834420854775, 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 |
+
[codecarbon DEBUG @ 13:02:19] EmissionsData(timestamp='2024-10-08T13:02:19', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=0.00672881499997402, emissions=0.00042593804655264846, emissions_rate=0.06330060293741067, cpu_power=42.5, gpu_power=169.19881768534145, ram_power=0.3441195487976074, cpu_energy=0.00023895755629652494, gpu_energy=0.0009130015637339997, ram_energy=1.924322054952754e-06, energy_consumed=0.0011538834420854775, 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)
|
306 |
+
|
307 |
0%| | 0/1000 [00:00<?, ?it/s]
|
308 |
3%|▎ | 26/1000 [00:00<00:03, 258.57it/s]
|
309 |
5%|▌ | 52/1000 [00:00<00:03, 254.79it/s]
|
310 |
8%|▊ | 78/1000 [00:00<00:03, 248.88it/s]
|
311 |
10%|█ | 103/1000 [00:00<00:03, 239.96it/s]
|
312 |
13%|█▎ | 130/1000 [00:00<00:03, 247.95it/s]
|
313 |
16%|█▌ | 156/1000 [00:00<00:03, 250.76it/s]
|
314 |
18%|█▊ | 182/1000 [00:00<00:03, 252.58it/s]
|
315 |
21%|██ | 209/1000 [00:00<00:03, 255.87it/s]
|
316 |
24%|██▎ | 236/1000 [00:00<00:02, 258.90it/s]
|
317 |
26%|██▌ | 262/1000 [00:01<00:02, 251.53it/s]
|
318 |
29%|██▉ | 289/1000 [00:01<00:02, 255.18it/s]
|
319 |
32%|███▏ | 315/1000 [00:01<00:02, 256.59it/s]
|
320 |
34%|███▍ | 342/1000 [00:01<00:02, 260.56it/s]
|
321 |
37%|███▋ | 369/1000 [00:01<00:02, 262.90it/s]
|
322 |
40%|███▉ | 396/1000 [00:01<00:02, 259.61it/s]
|
323 |
42%|████▏ | 422/1000 [00:01<00:02, 257.92it/s]
|
324 |
45%|████▍ | 448/1000 [00:01<00:02, 258.02it/s]
|
325 |
47%|████▋ | 474/1000 [00:01<00:02, 255.15it/s]
|
326 |
50%|█████ | 500/1000 [00:01<00:01, 254.94it/s]
|
327 |
53%|█████▎ | 526/1000 [00:02<00:01, 256.15it/s]
|
328 |
55%|█████▌ | 553/1000 [00:02<00:01, 259.23it/s]
|
329 |
58%|█████▊ | 579/1000 [00:02<00:01, 257.54it/s]
|
330 |
60%|██████ | 605/1000 [00:02<00:01, 255.94it/s]
|
331 |
63%|██████▎ | 632/1000 [00:02<00:01, 257.35it/s]
|
332 |
66%|██████▌ | 658/1000 [00:02<00:01, 256.41it/s]
|
333 |
68%|██████▊ | 684/1000 [00:02<00:01, 255.76it/s]
|
334 |
71%|███████ | 710/1000 [00:02<00:01, 255.70it/s]
|
335 |
74%|███████▎ | 736/1000 [00:02<00:01, 253.05it/s]
|
336 |
76%|███████▋ | 763/1000 [00:02<00:00, 254.11it/s]
|
337 |
79%|███████▉ | 790/1000 [00:03<00:00, 257.98it/s]
|
338 |
82%|████████▏ | 816/1000 [00:03<00:00, 257.53it/s]
|
339 |
84%|████████▍ | 842/1000 [00:03<00:00, 256.45it/s]
|
340 |
87%|████████▋ | 869/1000 [00:03<00:00, 258.22it/s]
|
341 |
90%|████████▉ | 896/1000 [00:03<00:00, 259.32it/s]
|
342 |
92%|█████████▏| 922/1000 [00:03<00:00, 259.27it/s]
|
343 |
95%|█████████▍| 948/1000 [00:03<00:00, 257.46it/s]
|
344 |
98%|█████████▊| 975/1000 [00:03<00:00, 260.95it/s]
|
345 |
+
[codecarbon WARNING @ 13:02:23] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
346 |
+
[codecarbon INFO @ 13:02:23] Energy consumed for RAM : 0.000002 kWh. RAM Power : 0.34412240982055664 W
|
347 |
+
[codecarbon DEBUG @ 13:02:23] RAM : 0.34 W during 3.91 s [measurement time: 0.0004]
|
348 |
+
[codecarbon INFO @ 13:02:23] Energy consumed for all GPUs : 0.001094 kWh. Total GPU Power : 166.44713882712838 W
|
349 |
+
[codecarbon DEBUG @ 13:02:23] GPU : 166.45 W during 3.91 s [measurement time: 0.0023]
|
350 |
+
[codecarbon INFO @ 13:02:23] Energy consumed for all CPUs : 0.000285 kWh. Total CPU Power : 42.5 W
|
351 |
+
[codecarbon DEBUG @ 13:02:23] CPU : 42.50 W during 3.91 s [measurement time: 0.0000]
|
352 |
+
[codecarbon INFO @ 13:02:23] 0.001381 kWh of electricity used since the beginning.
|
353 |
+
[codecarbon DEBUG @ 13:02:23] last_duration=3.9068080260000215
|
354 |
+
------------------------
|
355 |
+
[codecarbon DEBUG @ 13:02:23] EmissionsData(timestamp='2024-10-08T13:02:23', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=3.9099457949999987, emissions=0.0005098047109615491, emissions_rate=0.00013038664413544618, cpu_power=42.5, gpu_power=166.44713882712838, ram_power=0.34412240982055664, cpu_energy=0.00028511548199652555, gpu_energy=0.0010936683749340004, ram_energy=2.2977802624369826e-06, energy_consumed=0.001381081637192963, 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 |
+
[codecarbon DEBUG @ 13:02:23] EmissionsData(timestamp='2024-10-08T13:02:23', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=0.002026291999982277, emissions=0.0005098047109615491, emissions_rate=0.2515948890712731, cpu_power=42.5, gpu_power=166.44713882712838, ram_power=0.34412240982055664, cpu_energy=0.00028511548199652555, gpu_energy=0.0010936683749340004, ram_energy=2.2977802624369826e-06, energy_consumed=0.001381081637192963, 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)
|
357 |
+
|
358 |
0%| | 0/1000 [00:00<?, ?it/s]
|
359 |
3%|▎ | 26/1000 [00:00<00:03, 254.70it/s]
|
360 |
5%|▌ | 52/1000 [00:00<00:03, 254.73it/s]
|
361 |
8%|▊ | 78/1000 [00:00<00:03, 251.95it/s]
|
362 |
10%|█ | 104/1000 [00:00<00:03, 245.93it/s]
|
363 |
13%|█▎ | 130/1000 [00:00<00:03, 250.39it/s]
|
364 |
16%|█▌ | 156/1000 [00:00<00:03, 253.08it/s]
|
365 |
18%|█▊ | 182/1000 [00:00<00:03, 253.07it/s]
|
366 |
21%|██ | 208/1000 [00:00<00:03, 255.23it/s]
|
367 |
24%|██▎ | 235/1000 [00:00<00:02, 259.07it/s]
|
368 |
26%|██▌ | 261/1000 [00:01<00:02, 251.39it/s]
|
369 |
29%|██▉ | 288/1000 [00:01<00:02, 255.49it/s]
|
370 |
32%|███▏ | 315/1000 [00:01<00:02, 257.10it/s]
|
371 |
34%|███▍ | 343/1000 [00:01<00:02, 261.15it/s]
|
372 |
37%|███▋ | 370/1000 [00:01<00:02, 263.21it/s]
|
373 |
40%|███▉ | 397/1000 [00:01<00:02, 260.74it/s]
|
374 |
42%|████▏ | 424/1000 [00:01<00:02, 258.99it/s]
|
375 |
45%|████▌ | 450/1000 [00:01<00:02, 258.60it/s]
|
376 |
48%|████▊ | 477/1000 [00:01<00:02, 259.45it/s]
|
377 |
50%|█████ | 503/1000 [00:01<00:01, 258.53it/s]
|
378 |
53%|█████▎ | 529/1000 [00:02<00:01, 258.74it/s]
|
379 |
56%|█████▌ | 556/1000 [00:02<00:01, 260.32it/s]
|
380 |
58%|█████▊ | 583/1000 [00:02<00:01, 256.77it/s]
|
381 |
61%|██████ | 609/1000 [00:02<00:01, 257.48it/s]
|
382 |
64%|██████▎ | 635/1000 [00:02<00:01, 257.78it/s]
|
383 |
66%|██████▌ | 661/1000 [00:02<00:01, 257.72it/s]
|
384 |
69%|██████▉ | 688/1000 [00:02<00:01, 259.21it/s]
|
385 |
71%|███████▏ | 714/1000 [00:02<00:01, 258.53it/s]
|
386 |
74%|███████▍ | 740/1000 [00:02<00:01, 257.56it/s]
|
387 |
77%|███████▋ | 766/1000 [00:02<00:00, 257.13it/s]
|
388 |
79%|███████▉ | 793/1000 [00:03<00:00, 260.48it/s]
|
389 |
82%|████████▏ | 820/1000 [00:03<00:00, 259.45it/s]
|
390 |
85%|████████▍ | 847/1000 [00:03<00:00, 260.11it/s]
|
391 |
87%|████████▋ | 874/1000 [00:03<00:00, 261.00it/s]
|
392 |
90%|█████████ | 901/1000 [00:03<00:00, 260.67it/s]
|
393 |
93%|█████████▎| 928/1000 [00:03<00:00, 258.07it/s]
|
394 |
95%|█████████▌| 954/1000 [00:03<00:00, 256.35it/s]
|
395 |
98%|█████████▊| 981/1000 [00:03<00:00, 258.44it/s]
|
396 |
+
[codecarbon WARNING @ 13:02:27] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
397 |
+
[codecarbon INFO @ 13:02:27] Energy consumed for RAM : 0.000003 kWh. RAM Power : 0.34412240982055664 W
|
398 |
+
[codecarbon DEBUG @ 13:02:27] RAM : 0.34 W during 3.88 s [measurement time: 0.0004]
|
399 |
+
[codecarbon INFO @ 13:02:27] Energy consumed for all GPUs : 0.001276 kWh. Total GPU Power : 168.879760235557 W
|
400 |
+
[codecarbon DEBUG @ 13:02:27] GPU : 168.88 W during 3.88 s [measurement time: 0.0025]
|
401 |
+
[codecarbon INFO @ 13:02:27] Energy consumed for all CPUs : 0.000331 kWh. Total CPU Power : 42.5 W
|
402 |
+
[codecarbon DEBUG @ 13:02:27] CPU : 42.50 W during 3.89 s [measurement time: 0.0000]
|
403 |
+
[codecarbon INFO @ 13:02:27] 0.001610 kWh of electricity used since the beginning.
|
404 |
+
[codecarbon DEBUG @ 13:02:27] EmissionsData(timestamp='2024-10-08T13:02:27', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=3.8871041779999587, emissions=0.0005941470596458625, emissions_rate=0.00015285081964321585, cpu_power=42.5, gpu_power=168.879760235557, ram_power=0.34412240982055664, cpu_energy=0.00033100397732916396, gpu_energy=0.0012758954651600008, ram_energy=2.669037804816254e-06, energy_consumed=0.001609568480293981, 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)
|
405 |
+
[codecarbon INFO @ 13:02:27] 0.021709 g.CO2eq/s mean an estimation of 684.6247066740339 kg.CO2eq/year
|
406 |
+
[codecarbon DEBUG @ 13:02:27] last_duration=3.883787933000008
|
407 |
+
------------------------
|
408 |
+
[codecarbon DEBUG @ 13:02:27] EmissionsData(timestamp='2024-10-08T13:02:27', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=3.8874427140000307, emissions=0.0005941470596458625, emissions_rate=0.0001528375087062075, cpu_power=42.5, gpu_power=168.879760235557, ram_power=0.34412240982055664, cpu_energy=0.00033100397732916396, gpu_energy=0.0012758954651600008, ram_energy=2.669037804816254e-06, energy_consumed=0.001609568480293981, 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 |
+
[codecarbon DEBUG @ 13:02:27] EmissionsData(timestamp='2024-10-08T13:02:27', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=0.005072793999943315, emissions=0.0005941470596458625, emissions_rate=0.11712422378131297, cpu_power=42.5, gpu_power=168.879760235557, ram_power=0.34412240982055664, cpu_energy=0.00033100397732916396, gpu_energy=0.0012758954651600008, ram_energy=2.669037804816254e-06, energy_consumed=0.001609568480293981, country_name='United States', country_iso_code='USA', region='virginia', cloud_provider='', cloud_region='', os='Linux-5.10.192-183.736.amzn2.x86_64-x86_64-with-glibc2.35', python_version='3.9.20', codecarbon_version='2.5.1', cpu_count=48, cpu_model='AMD EPYC 7R32', gpu_count=1, gpu_model='1 x NVIDIA A10G', longitude=-77.4903, latitude=39.0469, ram_total_size=186.7047882080078, tracking_mode='process', on_cloud='N', pue=1.0)
|
410 |
+
|
411 |
0%| | 0/1000 [00:00<?, ?it/s]
|
412 |
3%|▎ | 27/1000 [00:00<00:03, 261.59it/s]
|
413 |
5%|▌ | 54/1000 [00:00<00:03, 256.73it/s]
|
414 |
8%|▊ | 80/1000 [00:00<00:03, 252.77it/s]
|
415 |
11%|█ | 106/1000 [00:00<00:03, 246.51it/s]
|
416 |
13%|█▎ | 131/1000 [00:00<00:03, 246.50it/s]
|
417 |
16%|█▌ | 157/1000 [00:00<00:03, 247.96it/s]
|
418 |
18%|█▊ | 182/1000 [00:00<00:03, 247.01it/s]
|
419 |
21%|██ | 208/1000 [00:00<00:03, 248.47it/s]
|
420 |
24%|██▎ | 235/1000 [00:00<00:03, 254.43it/s]
|
421 |
26%|██▌ | 261/1000 [00:01<00:02, 248.02it/s]
|
422 |
29%|██▉ | 288/1000 [00:01<00:02, 253.45it/s]
|
423 |
32%|███▏ | 315/1000 [00:01<00:02, 255.93it/s]
|
424 |
34%|███▍ | 341/1000 [00:01<00:02, 254.56it/s]
|
425 |
37%|███▋ | 367/1000 [00:01<00:02, 254.44it/s]
|
426 |
39%|███▉ | 393/1000 [00:01<00:02, 252.57it/s]
|
427 |
42%|████▏ | 419/1000 [00:01<00:02, 252.07it/s]
|
428 |
45%|████▍ | 446/1000 [00:01<00:02, 254.71it/s]
|
429 |
47%|████▋ | 472/1000 [00:01<00:02, 254.69it/s]
|
430 |
50%|████▉ | 498/1000 [00:01<00:01, 251.76it/s]
|
431 |
52%|█████▏ | 524/1000 [00:02<00:01, 250.75it/s]
|
432 |
55%|█████▌ | 550/1000 [00:02<00:01, 251.48it/s]
|
433 |
58%|█████▊ | 576/1000 [00:02<00:01, 252.07it/s]
|
434 |
60%|██████ | 602/1000 [00:02<00:01, 250.92it/s]
|
435 |
63%|██████▎ | 628/1000 [00:02<00:01, 253.39it/s]
|
436 |
65%|██████▌ | 654/1000 [00:02<00:01, 253.83it/s]
|
437 |
68%|██████▊ | 681/1000 [00:02<00:01, 256.03it/s]
|
438 |
71%|███████ | 708/1000 [00:02<00:01, 257.99it/s]
|
439 |
73%|███████▎ | 734/1000 [00:02<00:01, 256.19it/s]
|
440 |
76%|███████▌ | 760/1000 [00:03<00:00, 256.90it/s]
|
441 |
79%|███████▊ | 787/1000 [00:03<00:00, 259.13it/s]
|
442 |
81%|████████▏ | 813/1000 [00:03<00:00, 259.11it/s]
|
443 |
84%|████████▍ | 840/1000 [00:03<00:00, 260.96it/s]
|
444 |
87%|████████▋ | 867/1000 [00:03<00:00, 260.58it/s]
|
445 |
89%|████████▉ | 894/1000 [00:03<00:00, 260.70it/s]
|
446 |
92%|█████████▏| 921/1000 [00:03<00:00, 260.56it/s]
|
447 |
95%|█████████▍| 948/1000 [00:03<00:00, 259.03it/s]
|
448 |
98%|█████████▊| 975/1000 [00:03<00:00, 261.68it/s]
|
449 |
+
[codecarbon WARNING @ 13:02:31] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
450 |
+
[codecarbon INFO @ 13:02:31] Energy consumed for RAM : 0.000003 kWh. RAM Power : 0.34412240982055664 W
|
451 |
+
[codecarbon DEBUG @ 13:02:31] RAM : 0.34 W during 3.93 s [measurement time: 0.0004]
|
452 |
+
[codecarbon INFO @ 13:02:31] Energy consumed for all GPUs : 0.001458 kWh. Total GPU Power : 166.45990558993896 W
|
453 |
+
[codecarbon DEBUG @ 13:02:31] GPU : 166.46 W during 3.93 s [measurement time: 0.0023]
|
454 |
+
[codecarbon INFO @ 13:02:31] Energy consumed for all CPUs : 0.000377 kWh. Total CPU Power : 42.5 W
|
455 |
+
[codecarbon DEBUG @ 13:02:31] CPU : 42.50 W during 3.93 s [measurement time: 0.0000]
|
456 |
+
[codecarbon INFO @ 13:02:31] 0.001838 kWh of electricity used since the beginning.
|
457 |
+
[codecarbon DEBUG @ 13:02:31] last_duration=3.9277428439999085
|
458 |
+
------------------------
|
459 |
+
[codecarbon DEBUG @ 13:02:31] EmissionsData(timestamp='2024-10-08T13:02:31', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=3.930906269999923, emissions=0.000678468780911744, emissions_rate=0.00017259856488813132, cpu_power=42.5, gpu_power=166.45990558993896, ram_power=0.34412240982055664, cpu_energy=0.00037740933536110764, gpu_energy=0.00145754561048, ram_energy=3.0444970408115106e-06, energy_consumed=0.0018379994428819194, 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 |
+
[codecarbon DEBUG @ 13:02:31] EmissionsData(timestamp='2024-10-08T13:02:31', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=0.0020576900000151, emissions=0.000678468780911744, emissions_rate=0.3297235156446137, cpu_power=42.5, gpu_power=166.45990558993896, ram_power=0.34412240982055664, cpu_energy=0.00037740933536110764, gpu_energy=0.00145754561048, ram_energy=3.0444970408115106e-06, energy_consumed=0.0018379994428819194, 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)
|
461 |
+
|
462 |
0%| | 0/1000 [00:00<?, ?it/s]
|
463 |
3%|▎ | 26/1000 [00:00<00:03, 257.97it/s]
|
464 |
5%|▌ | 52/1000 [00:00<00:03, 250.91it/s]
|
465 |
8%|▊ | 78/1000 [00:00<00:03, 248.24it/s]
|
466 |
10%|█ | 103/1000 [00:00<00:03, 243.31it/s]
|
467 |
13%|█▎ | 130/1000 [00:00<00:03, 250.80it/s]
|
468 |
16%|█▌ | 156/1000 [00:00<00:03, 252.66it/s]
|
469 |
18%|█▊ | 182/1000 [00:00<00:03, 252.87it/s]
|
470 |
21%|██ | 208/1000 [00:00<00:03, 254.80it/s]
|
471 |
24%|██▎ | 235/1000 [00:00<00:02, 258.88it/s]
|
472 |
26%|██▌ | 261/1000 [00:01<00:02, 250.89it/s]
|
473 |
29%|██▉ | 288/1000 [00:01<00:02, 255.34it/s]
|
474 |
32%|███▏ | 315/1000 [00:01<00:02, 257.25it/s]
|
475 |
34%|███▍ | 342/1000 [00:01<00:02, 260.99it/s]
|
476 |
37%|███▋ | 369/1000 [00:01<00:02, 262.99it/s]
|
477 |
40%|███▉ | 396/1000 [00:01<00:02, 258.85it/s]
|
478 |
42%|████▏ | 422/1000 [00:01<00:02, 257.36it/s]
|
479 |
45%|████▍ | 448/1000 [00:01<00:02, 256.77it/s]
|
480 |
47%|████▋ | 474/1000 [00:01<00:02, 254.85it/s]
|
481 |
50%|█████ | 500/1000 [00:01<00:01, 251.99it/s]
|
482 |
53%|█████▎ | 526/1000 [00:02<00:01, 251.64it/s]
|
483 |
55%|█████▌ | 552/1000 [00:02<00:01, 251.02it/s]
|
484 |
58%|█████▊ | 578/1000 [00:02<00:01, 249.20it/s]
|
485 |
60%|██████ | 603/1000 [00:02<00:01, 247.32it/s]
|
486 |
63%|██████▎ | 628/1000 [00:02<00:01, 248.00it/s]
|
487 |
65%|██████▌ | 653/1000 [00:02<00:01, 247.76it/s]
|
488 |
68%|██████▊ | 679/1000 [00:02<00:01, 249.66it/s]
|
489 |
70%|███████ | 705/1000 [00:02<00:01, 251.98it/s]
|
490 |
73%|███████▎ | 731/1000 [00:02<00:01, 247.36it/s]
|
491 |
76%|███████▌ | 756/1000 [00:02<00:00, 248.10it/s]
|
492 |
78%|███████▊ | 782/1000 [00:03<00:00, 249.49it/s]
|
493 |
81%|████████ | 808/1000 [00:03<00:00, 249.74it/s]
|
494 |
83%|████████▎ | 833/1000 [00:03<00:00, 249.70it/s]
|
495 |
86%|████████▌ | 858/1000 [00:03<00:00, 249.68it/s]
|
496 |
88%|████████▊ | 885/1000 [00:03<00:00, 255.48it/s]
|
497 |
91%|█████████ | 911/1000 [00:03<00:00, 254.38it/s]
|
498 |
94%|█████████▎| 937/1000 [00:03<00:00, 252.65it/s]
|
499 |
96%|█████████▋| 963/1000 [00:03<00:00, 253.32it/s]
|
500 |
99%|█████████▉| 989/1000 [00:03<00:00, 252.52it/s]
|
501 |
+
[codecarbon WARNING @ 13:02:35] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
502 |
+
[codecarbon INFO @ 13:02:35] Energy consumed for RAM : 0.000003 kWh. RAM Power : 0.34412240982055664 W
|
503 |
+
[codecarbon DEBUG @ 13:02:35] RAM : 0.34 W during 3.96 s [measurement time: 0.0004]
|
504 |
+
[codecarbon INFO @ 13:02:35] Energy consumed for all GPUs : 0.001643 kWh. Total GPU Power : 168.260425038011 W
|
505 |
+
[codecarbon DEBUG @ 13:02:35] GPU : 168.26 W during 3.96 s [measurement time: 0.0067]
|
506 |
+
[codecarbon INFO @ 13:02:35] Energy consumed for all CPUs : 0.000424 kWh. Total CPU Power : 42.5 W
|
507 |
+
[codecarbon DEBUG @ 13:02:35] CPU : 42.50 W during 3.97 s [measurement time: 0.0000]
|
508 |
+
[codecarbon INFO @ 13:02:35] 0.002071 kWh of electricity used since the beginning.
|
509 |
+
[codecarbon DEBUG @ 13:02:35] last_duration=3.963194380999994
|
510 |
+
------------------------
|
511 |
+
[codecarbon DEBUG @ 13:02:35] EmissionsData(timestamp='2024-10-08T13:02:35', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=3.9707531710000694, emissions=0.0007643019785847099, emissions_rate=0.00019248287306466186, cpu_power=42.5, gpu_power=168.260425038011, ram_power=0.34412240982055664, cpu_energy=0.00042428511917569123, gpu_energy=0.0016428165920300006, ram_energy=3.423345149084833e-06, energy_consumed=0.002070525056354777, 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)
|
512 |
+
[codecarbon DEBUG @ 13:02:35] EmissionsData(timestamp='2024-10-08T13:02:35', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=0.0020522500000197397, emissions=0.0007643019785847099, emissions_rate=0.3724214781714501, cpu_power=42.5, gpu_power=168.260425038011, ram_power=0.34412240982055664, cpu_energy=0.00042428511917569123, gpu_energy=0.0016428165920300006, ram_energy=3.423345149084833e-06, energy_consumed=0.002070525056354777, 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)
|
513 |
+
|
514 |
0%| | 0/1000 [00:00<?, ?it/s]
|
515 |
3%|▎ | 26/1000 [00:00<00:03, 253.14it/s]
|
516 |
5%|▌ | 52/1000 [00:00<00:03, 253.10it/s]
|
517 |
8%|▊ | 78/1000 [00:00<00:03, 250.61it/s]
|
518 |
10%|█ | 104/1000 [00:00<00:03, 247.09it/s]
|
519 |
13%|█▎ | 131/1000 [00:00<00:03, 252.06it/s]
|
520 |
16%|█▌ | 158/1000 [00:00<00:03, 254.63it/s]
|
521 |
18%|█▊ | 184/1000 [00:00<00:03, 256.07it/s]
|
522 |
21%|██ | 211/1000 [00:00<00:03, 257.36it/s]
|
523 |
24%|██▎ | 237/1000 [00:00<00:02, 257.38it/s]
|
524 |
26%|██▋ | 263/1000 [00:01<00:02, 248.20it/s]
|
525 |
29%|██▉ | 289/1000 [00:01<00:02, 249.11it/s]
|
526 |
32%|███▏ | 315/1000 [00:01<00:02, 249.91it/s]
|
527 |
34%|███▍ | 341/1000 [00:01<00:02, 250.90it/s]
|
528 |
37%|███▋ | 367/1000 [00:01<00:02, 251.46it/s]
|
529 |
39%|███▉ | 393/1000 [00:01<00:02, 250.64it/s]
|
530 |
42%|████▏ | 419/1000 [00:01<00:02, 249.01it/s]
|
531 |
44%|████▍ | 444/1000 [00:01<00:02, 249.15it/s]
|
532 |
47%|████▋ | 470/1000 [00:01<00:02, 251.02it/s]
|
533 |
50%|████▉ | 496/1000 [00:01<00:01, 252.45it/s]
|
534 |
52%|█████▏ | 523/1000 [00:02<00:01, 255.46it/s]
|
535 |
55%|█████▌ | 550/1000 [00:02<00:01, 258.11it/s]
|
536 |
58%|█████▊ | 576/1000 [00:02<00:01, 258.12it/s]
|
537 |
60%|██████ | 602/1000 [00:02<00:01, 254.83it/s]
|
538 |
63%|██████▎ | 628/1000 [00:02<00:01, 256.23it/s]
|
539 |
65%|██████▌ | 654/1000 [00:02<00:01, 253.82it/s]
|
540 |
68%|██████▊ | 680/1000 [00:02<00:01, 253.55it/s]
|
541 |
71%|███████ | 706/1000 [00:02<00:01, 254.06it/s]
|
542 |
73%|███████▎ | 732/1000 [00:02<00:01, 252.53it/s]
|
543 |
76%|███████▌ | 759/1000 [00:02<00:00, 255.13it/s]
|
544 |
79%|███████▊ | 786/1000 [00:03<00:00, 257.97it/s]
|
545 |
81%|████████ | 812/1000 [00:03<00:00, 258.56it/s]
|
546 |
84%|████████▍ | 839/1000 [00:03<00:00, 260.34it/s]
|
547 |
87%|████████▋ | 866/1000 [00:03<00:00, 258.71it/s]
|
548 |
89%|████████▉ | 892/1000 [00:03<00:00, 258.64it/s]
|
549 |
92%|█████████▏| 918/1000 [00:03<00:00, 254.47it/s]
|
550 |
94%|█████████▍| 944/1000 [00:03<00:00, 253.47it/s]
|
551 |
97%|█████████▋| 970/1000 [00:03<00:00, 254.14it/s]
|
552 |
+
[codecarbon WARNING @ 13:02:39] Background scheduler didn't run for a long period (3s), results might be inaccurate
|
553 |
+
[codecarbon INFO @ 13:02:39] Energy consumed for RAM : 0.000004 kWh. RAM Power : 0.34412240982055664 W
|
554 |
+
[codecarbon DEBUG @ 13:02:39] RAM : 0.34 W during 3.94 s [measurement time: 0.0004]
|
555 |
+
[codecarbon INFO @ 13:02:39] Energy consumed for all GPUs : 0.001825 kWh. Total GPU Power : 166.0055014943033 W
|
556 |
+
[codecarbon DEBUG @ 13:02:39] GPU : 166.01 W during 3.94 s [measurement time: 0.0022]
|
557 |
+
[codecarbon INFO @ 13:02:39] Energy consumed for all CPUs : 0.000471 kWh. Total CPU Power : 42.5 W
|
558 |
+
[codecarbon DEBUG @ 13:02:39] CPU : 42.50 W during 3.94 s [measurement time: 0.0000]
|
559 |
+
[codecarbon INFO @ 13:02:39] 0.002299 kWh of electricity used since the beginning.
|
560 |
+
[codecarbon DEBUG @ 13:02:39] last_duration=3.941462545000036
|
561 |
+
------------------------
|
562 |
+
[codecarbon DEBUG @ 13:02:39] EmissionsData(timestamp='2024-10-08T13:02:39', project_name='codecarbon', run_id='d9e5d902-455c-48c2-8494-cae66f047761', duration=3.9445968759999914, emissions=0.0008487342972597723, emissions_rate=0.00021516376043993353, cpu_power=42.5, gpu_power=166.0055014943033, ram_power=0.34412240982055664, cpu_energy=0.00047085211187360723, gpu_energy=0.001824603404126001, ram_energy=3.8001158098703305e-06, energy_consumed=0.002299255631809479, 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-13-01-46/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-13-01-46/forward_codecarbon.json
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"timestamp": "2024-10-08T13:02:39",
|
3 |
+
"project_name": "codecarbon",
|
4 |
+
"run_id": "d9e5d902-455c-48c2-8494-cae66f047761",
|
5 |
+
"duration": -1728391751.3605812,
|
6 |
+
"emissions": 8.443231867506242e-05,
|
7 |
+
"emissions_rate": 2.141569130714591e-05,
|
8 |
+
"cpu_power": 42.5,
|
9 |
+
"gpu_power": 166.0055014943033,
|
10 |
+
"ram_power": 0.34412240982055664,
|
11 |
+
"cpu_energy": 4.6566992697916003e-05,
|
12 |
+
"gpu_energy": 0.00018178681209600044,
|
13 |
+
"ram_energy": 3.767706607854975e-07,
|
14 |
+
"energy_consumed": 0.00022873057545470202,
|
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-13-01-46/preprocess_codecarbon.json
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"timestamp": "2024-10-08T13:01:59",
|
3 |
+
"project_name": "codecarbon",
|
4 |
+
"run_id": "d9e5d902-455c-48c2-8494-cae66f047761",
|
5 |
+
"duration": -1728391754.8784518,
|
6 |
+
"emissions": 4.598363284616753e-06,
|
7 |
+
"emissions_rate": 1.0825854632386125e-05,
|
8 |
+
"cpu_power": 42.5,
|
9 |
+
"gpu_power": 62.61794011262714,
|
10 |
+
"ram_power": 0.27339935302734375,
|
11 |
+
"cpu_energy": 5.039404527083176e-06,
|
12 |
+
"gpu_energy": 7.385561463999803e-06,
|
13 |
+
"ram_energy": 3.218663418082601e-08,
|
14 |
+
"energy_consumed": 1.2457152625263805e-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 |
+
}
|