Patrick von Platen commited on
Commit ·
4e23f8c
1
Parent(s): 365d5ef
up
Browse files- config.json +1 -1
- run_main_flax.sh +20 -0
- wandb/debug-internal.log +1 -0
- wandb/debug.log +1 -0
- wandb/latest-run +1 -0
- wandb/run-20210907_084857-bmxot28l/files/config.yaml +30 -0
- wandb/run-20210907_084857-bmxot28l/files/output.log +86 -0
- wandb/run-20210907_084857-bmxot28l/files/requirements.txt +293 -0
- wandb/run-20210907_084857-bmxot28l/files/wandb-metadata.json +39 -0
- wandb/run-20210907_084857-bmxot28l/files/wandb-summary.json +1 -0
- wandb/run-20210907_084857-bmxot28l/logs/debug-internal.log +148 -0
- wandb/run-20210907_084857-bmxot28l/logs/debug.log +124 -0
- wandb/run-20210907_084857-bmxot28l/run-bmxot28l.wandb +0 -0
- wandb/run-20210907_085010-xa9s4yt2/files/config.yaml +24 -0
- wandb/run-20210907_085010-xa9s4yt2/files/output.log +212 -0
- wandb/run-20210907_085010-xa9s4yt2/files/requirements.txt +293 -0
- wandb/run-20210907_085010-xa9s4yt2/files/wandb-metadata.json +39 -0
- wandb/run-20210907_085010-xa9s4yt2/files/wandb-summary.json +1 -0
- wandb/run-20210907_085010-xa9s4yt2/logs/debug-internal.log +0 -0
- wandb/run-20210907_085010-xa9s4yt2/logs/debug.log +24 -0
- wandb/run-20210907_085010-xa9s4yt2/run-xa9s4yt2.wandb +0 -0
- wandb/run-20210907_094005-1jmcrt7a/files/config.yaml +24 -0
- wandb/run-20210907_094005-1jmcrt7a/files/output.log +72 -0
- wandb/run-20210907_094005-1jmcrt7a/files/requirements.txt +293 -0
- wandb/run-20210907_094005-1jmcrt7a/files/wandb-metadata.json +39 -0
- wandb/run-20210907_094005-1jmcrt7a/files/wandb-summary.json +1 -0
- wandb/run-20210907_094005-1jmcrt7a/logs/debug-internal.log +62 -0
- wandb/run-20210907_094005-1jmcrt7a/logs/debug.log +25 -0
- wandb/run-20210907_094005-1jmcrt7a/run-1jmcrt7a.wandb +0 -0
- wandb/run-20210907_094306-1gii9ass/files/config.yaml +24 -0
- wandb/run-20210907_094306-1gii9ass/files/output.log +1 -0
- wandb/run-20210907_094306-1gii9ass/files/requirements.txt +293 -0
- wandb/run-20210907_094306-1gii9ass/files/wandb-metadata.json +39 -0
- wandb/run-20210907_094306-1gii9ass/files/wandb-summary.json +1 -0
- wandb/run-20210907_094306-1gii9ass/logs/debug-internal.log +29 -0
- wandb/run-20210907_094306-1gii9ass/logs/debug.log +22 -0
- wandb/run-20210907_094306-1gii9ass/run-1gii9ass.wandb +0 -0
config.json
CHANGED
|
@@ -65,7 +65,7 @@
|
|
| 65 |
"mask_time_length": 10,
|
| 66 |
"mask_time_min_space": 1,
|
| 67 |
"mask_time_other": 0.0,
|
| 68 |
-
"mask_time_prob": 0.
|
| 69 |
"mask_time_selection": "static",
|
| 70 |
"model_type": "wav2vec2",
|
| 71 |
"num_attention_heads": 16,
|
|
|
|
| 65 |
"mask_time_length": 10,
|
| 66 |
"mask_time_min_space": 1,
|
| 67 |
"mask_time_other": 0.0,
|
| 68 |
+
"mask_time_prob": 0.18,
|
| 69 |
"mask_time_selection": "static",
|
| 70 |
"model_type": "wav2vec2",
|
| 71 |
"num_attention_heads": 16,
|
run_main_flax.sh
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env bash
|
| 2 |
+
# JAX_PLATFORM_NAME="cpu" ./run_wav2vec2_pretrain_flax.py \
|
| 3 |
+
./run_wav2vec2_pretrain_flax.py \
|
| 4 |
+
--output_dir="./" \
|
| 5 |
+
--num_train_epochs="1000" \
|
| 6 |
+
--warmup_steps="32000" \
|
| 7 |
+
--dataset_name="patrickvonplaten/librispeech_local" \
|
| 8 |
+
--dataset_config_name="clean" \
|
| 9 |
+
--train_split_name="train" \
|
| 10 |
+
--per_device_train_batch_size="8" \
|
| 11 |
+
--per_device_eval_batch_size="8" \
|
| 12 |
+
--learning_rate="0.0005" \
|
| 13 |
+
--weight_decay="0.01" \
|
| 14 |
+
--model_name_or_path="./" \
|
| 15 |
+
--logging_steps="1" \
|
| 16 |
+
--max_duration_in_seconds="16.0" \
|
| 17 |
+
--adam_beta1="0.9" \
|
| 18 |
+
--adam_beta2="0.98" \
|
| 19 |
+
--adam_epsilon="1e-06" \
|
| 20 |
+
# --logging_steps="10" \
|
wandb/debug-internal.log
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
run-20210907_094306-1gii9ass/logs/debug-internal.log
|
wandb/debug.log
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
run-20210907_094306-1gii9ass/logs/debug.log
|
wandb/latest-run
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
run-20210907_094306-1gii9ass
|
wandb/run-20210907_084857-bmxot28l/files/config.yaml
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
wandb_version: 1
|
| 2 |
+
|
| 3 |
+
_wandb:
|
| 4 |
+
desc: null
|
| 5 |
+
value:
|
| 6 |
+
cli_version: 0.12.1
|
| 7 |
+
framework: huggingface
|
| 8 |
+
huggingface_version: 4.10.0.dev0
|
| 9 |
+
is_jupyter_run: false
|
| 10 |
+
is_kaggle_kernel: false
|
| 11 |
+
python_version: 3.6.9
|
| 12 |
+
start_time: 1631004537
|
| 13 |
+
t:
|
| 14 |
+
1:
|
| 15 |
+
- 1
|
| 16 |
+
- 3
|
| 17 |
+
- 5
|
| 18 |
+
- 11
|
| 19 |
+
- 12
|
| 20 |
+
2:
|
| 21 |
+
- 1
|
| 22 |
+
- 3
|
| 23 |
+
- 5
|
| 24 |
+
- 11
|
| 25 |
+
- 12
|
| 26 |
+
4: 3.6.9
|
| 27 |
+
5: 0.12.1
|
| 28 |
+
6: 4.10.0.dev0
|
| 29 |
+
8:
|
| 30 |
+
- 5
|
wandb/run-20210907_084857-bmxot28l/files/output.log
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
09/07/2021 08:49:00 - WARNING - datasets.builder - Using custom data configuration clean-5e73ba74b650b050
|
| 2 |
+
09/07/2021 08:49:00 - WARNING - datasets.builder - Reusing dataset librispeech_asr (/home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d)
|
| 3 |
+
09/07/2021 08:49:02 - WARNING - datasets.builder - Using custom data configuration clean-5e73ba74b650b050
|
| 4 |
+
09/07/2021 08:49:02 - WARNING - datasets.builder - Reusing dataset librispeech_asr (/home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d)
|
| 5 |
+
09/07/2021 08:49:03 - WARNING - datasets.builder - Using custom data configuration clean-5e73ba74b650b050
|
| 6 |
+
09/07/2021 08:49:03 - WARNING - datasets.builder - Reusing dataset librispeech_asr (/home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d)
|
| 7 |
+
09/07/2021 08:49:03 - WARNING - datasets.arrow_dataset - Loading cached processed dataset at /home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d/cache-db644ef2f80e3eb0.arrow
|
| 8 |
+
09/07/2021 08:49:03 - WARNING - datasets.arrow_dataset - Loading cached processed dataset at /home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d/cache-28ff0a758509a518.arrow
|
| 9 |
+
09/07/2021 08:49:03 - WARNING - datasets.arrow_dataset - Loading cached processed dataset at /home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d/cache-ebd4bfab3f9a52e1.arrow
|
| 10 |
+
09/07/2021 08:49:03 - WARNING - datasets.arrow_dataset - Loading cached processed dataset at /home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d/cache-22013ad6e1e490a3.arrow
|
| 11 |
+
09/07/2021 08:49:03 - WARNING - datasets.arrow_dataset - Loading cached processed dataset at /home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d/cache-76e336d8ca423b69.arrow
|
| 12 |
+
09/07/2021 08:49:03 - WARNING - datasets.arrow_dataset - Loading cached processed dataset at /home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d/cache-4434cc61a19cb118.arrow
|
| 13 |
+
09/07/2021 08:49:03 - INFO - absl - Starting the local TPU driver.
|
| 14 |
+
09/07/2021 08:49:03 - INFO - absl - Unable to initialize backend 'tpu_driver': Not found: Unable to find driver in registry given worker: local://
|
| 15 |
+
09/07/2021 08:49:03 - INFO - absl - Unable to initialize backend 'gpu': Not found: Could not find registered platform with name: "cuda". Available platform names are: TPU Interpreter Host
|
| 16 |
+
2021-09-07 08:49:16.475557: W tensorflow/stream_executor/platform/default/dso_loader.cc:60] Could not load dynamic library 'libcuda.so.1'; dlerror: libcuda.so.1: cannot open shared object file: No such file or directory; LD_LIBRARY_PATH: :/home/patrick/hf_flax_tpu/lib:/home/patrick/hf_flax_tpu/lib
|
| 17 |
+
2021-09-07 08:49:16.475608: W tensorflow/stream_executor/cuda/cuda_driver.cc:326] failed call to cuInit: UNKNOWN ERROR (303)
|
| 18 |
+
/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/lib/xla_bridge.py:387: UserWarning: jax.host_count has been renamed to jax.process_count. This alias will eventually be removed; please update your code.
|
| 19 |
+
"jax.host_count has been renamed to jax.process_count. This alias "
|
| 20 |
+
/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/lib/xla_bridge.py:374: UserWarning: jax.host_id has been renamed to jax.process_index. This alias will eventually be removed; please update your code.
|
| 21 |
+
"jax.host_id has been renamed to jax.process_index. This alias "
|
| 22 |
+
09/07/2021 08:49:16 - INFO - absl - A polynomial schedule was set with a non-positive `transition_steps` value; this results in a constant schedule with value `init_value`.
|
| 23 |
+
Epoch ... (1/1000): 0%| | 0/1000 [00:00<?, ?it/s]
|
| 24 |
+
Epoch ... (1/1000): 0%| | 0/1000 [00:16<?, ?it/s]
|
| 25 |
+
Traceback (most recent call last):
|
| 26 |
+
File "./run_wav2vec2_pretrain_flax.py", line 677, in <module>
|
| 27 |
+
main()
|
| 28 |
+
File "./run_wav2vec2_pretrain_flax.py", line 615, in main
|
| 29 |
+
state, model_inputs, dropout_rngs, gumbel_rngs
|
| 30 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/_src/traceback_util.py", line 183, in reraise_with_filtered_traceback
|
| 31 |
+
return fun(*args, **kwargs)
|
| 32 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/_src/api.py", line 1676, in f_pmapped
|
| 33 |
+
global_arg_shapes=tuple(global_arg_shapes_flat))
|
| 34 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/core.py", line 1620, in bind
|
| 35 |
+
return call_bind(self, fun, *args, **params)
|
| 36 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/core.py", line 1551, in call_bind
|
| 37 |
+
outs = primitive.process(top_trace, fun, tracers, params)
|
| 38 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/core.py", line 1623, in process
|
| 39 |
+
return trace.process_map(self, fun, tracers, params)
|
| 40 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/core.py", line 606, in process_call
|
| 41 |
+
return primitive.impl(f, *tracers, **params)
|
| 42 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/interpreters/pxla.py", line 628, in xla_pmap_impl
|
| 43 |
+
*abstract_args)
|
| 44 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/linear_util.py", line 262, in memoized_fun
|
| 45 |
+
ans = call(fun, *args)
|
| 46 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/interpreters/pxla.py", line 713, in parallel_callable
|
| 47 |
+
fun, global_sharded_avals, pe.debug_info_final(fun, "pmap"))
|
| 48 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/interpreters/partial_eval.py", line 1284, in trace_to_jaxpr_final
|
| 49 |
+
jaxpr, out_avals, consts = trace_to_subjaxpr_dynamic(fun, main, in_avals)
|
| 50 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/interpreters/partial_eval.py", line 1262, in trace_to_subjaxpr_dynamic
|
| 51 |
+
ans = fun.call_wrapped(*in_tracers)
|
| 52 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/linear_util.py", line 166, in call_wrapped
|
| 53 |
+
ans = self.f(*args, **dict(self.params, **kwargs))
|
| 54 |
+
File "./run_wav2vec2_pretrain_flax.py", line 529, in train_step
|
| 55 |
+
(loss, logs), grad = grad_fn(state.params)
|
| 56 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/_src/traceback_util.py", line 183, in reraise_with_filtered_traceback
|
| 57 |
+
return fun(*args, **kwargs)
|
| 58 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/_src/api.py", line 904, in value_and_grad_f
|
| 59 |
+
f_partial, *dyn_args, has_aux=True, reduce_axes=reduce_axes)
|
| 60 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/_src/api.py", line 2002, in _vjp
|
| 61 |
+
flat_fun, primals_flat, has_aux=True, reduce_axes=reduce_axes)
|
| 62 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/interpreters/ad.py", line 117, in vjp
|
| 63 |
+
out_primals, pvals, jaxpr, consts, aux = linearize(traceable, *primals, has_aux=True)
|
| 64 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/interpreters/ad.py", line 102, in linearize
|
| 65 |
+
jaxpr, out_pvals, consts = pe.trace_to_jaxpr(jvpfun_flat, in_pvals)
|
| 66 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/interpreters/partial_eval.py", line 505, in trace_to_jaxpr
|
| 67 |
+
jaxpr, (out_pvals, consts, env) = fun.call_wrapped(pvals)
|
| 68 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/linear_util.py", line 166, in call_wrapped
|
| 69 |
+
ans = self.f(*args, **dict(self.params, **kwargs))
|
| 70 |
+
File "./run_wav2vec2_pretrain_flax.py", line 522, in loss_fn
|
| 71 |
+
logs["contrast_loss"] = jax.lax.psum(contrastive_loss) / global_sample_size
|
| 72 |
+
jax._src.traceback_util.UnfilteredStackTrace: TypeError: psum() missing 1 required positional argument: 'axis_name'
|
| 73 |
+
The stack trace below excludes JAX-internal frames.
|
| 74 |
+
The preceding is the original exception that occurred, unmodified.
|
| 75 |
+
--------------------
|
| 76 |
+
The above exception was the direct cause of the following exception:
|
| 77 |
+
Traceback (most recent call last):
|
| 78 |
+
File "./run_wav2vec2_pretrain_flax.py", line 677, in <module>
|
| 79 |
+
main()
|
| 80 |
+
File "./run_wav2vec2_pretrain_flax.py", line 615, in main
|
| 81 |
+
state, model_inputs, dropout_rngs, gumbel_rngs
|
| 82 |
+
File "./run_wav2vec2_pretrain_flax.py", line 529, in train_step
|
| 83 |
+
(loss, logs), grad = grad_fn(state.params)
|
| 84 |
+
File "./run_wav2vec2_pretrain_flax.py", line 522, in loss_fn
|
| 85 |
+
logs["contrast_loss"] = jax.lax.psum(contrastive_loss) / global_sample_size
|
| 86 |
+
TypeError: psum() missing 1 required positional argument: 'axis_name'
|
wandb/run-20210907_084857-bmxot28l/files/requirements.txt
ADDED
|
@@ -0,0 +1,293 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
absl-py==0.12.0
|
| 2 |
+
aiobotocore==1.2.2
|
| 3 |
+
aiohttp==3.7.4.post0
|
| 4 |
+
aioitertools==0.7.1
|
| 5 |
+
alabaster==0.7.12
|
| 6 |
+
antlr4-python3-runtime==4.8
|
| 7 |
+
apache-beam==2.28.0
|
| 8 |
+
apipkg==1.5
|
| 9 |
+
appdirs==1.4.4
|
| 10 |
+
argcomplete==1.12.3
|
| 11 |
+
arrow==1.0.3
|
| 12 |
+
astunparse==1.6.3
|
| 13 |
+
async-timeout==3.0.1
|
| 14 |
+
attrs==20.3.0
|
| 15 |
+
audioread==2.1.9
|
| 16 |
+
avro-python3==1.9.2.1
|
| 17 |
+
aws-sam-translator==1.35.0
|
| 18 |
+
aws-xray-sdk==2.7.0
|
| 19 |
+
babel==2.9.0
|
| 20 |
+
backcall==0.2.0
|
| 21 |
+
bcj-cffi==0.5.1
|
| 22 |
+
beautifulsoup4==4.9.3
|
| 23 |
+
bert-score==0.3.9
|
| 24 |
+
binaryornot==0.4.4
|
| 25 |
+
black==21.4b0
|
| 26 |
+
boto3==1.16.43
|
| 27 |
+
boto==2.49.0
|
| 28 |
+
botocore==1.19.52
|
| 29 |
+
bs4==0.0.1
|
| 30 |
+
cachetools==4.2.1
|
| 31 |
+
certifi==2020.12.5
|
| 32 |
+
cffi==1.14.5
|
| 33 |
+
cfn-lint==0.48.3
|
| 34 |
+
chardet==4.0.0
|
| 35 |
+
chex==0.0.6
|
| 36 |
+
click==7.1.2
|
| 37 |
+
cloud-tpu-client==0.10
|
| 38 |
+
cloud-tpu-profiler==2.4.0
|
| 39 |
+
commonmark==0.9.1
|
| 40 |
+
configparser==5.0.2
|
| 41 |
+
conllu==4.4
|
| 42 |
+
cookiecutter==1.7.2
|
| 43 |
+
crcmod==1.7
|
| 44 |
+
cryptography==3.4.7
|
| 45 |
+
cycler==0.10.0
|
| 46 |
+
cython==0.29.23
|
| 47 |
+
dataclasses==0.8
|
| 48 |
+
datasets==1.9.0
|
| 49 |
+
decorator==4.4.2
|
| 50 |
+
dill==0.3.1.1
|
| 51 |
+
dm-tree==0.1.6
|
| 52 |
+
docker-pycreds==0.4.0
|
| 53 |
+
docker==5.0.0
|
| 54 |
+
docopt==0.6.2
|
| 55 |
+
docutils==0.16
|
| 56 |
+
ecdsa==0.14.1
|
| 57 |
+
elasticsearch==7.12.0
|
| 58 |
+
entrypoints==0.3
|
| 59 |
+
et-xmlfile==1.1.0
|
| 60 |
+
execnet==1.8.0
|
| 61 |
+
fairseq==1.0.0a0+9825786
|
| 62 |
+
faiss-cpu==1.7.0
|
| 63 |
+
fastavro==1.4.0
|
| 64 |
+
fastbpe==0.1.0
|
| 65 |
+
fasteners==0.16
|
| 66 |
+
filelock==3.0.12
|
| 67 |
+
fire==0.4.0
|
| 68 |
+
flake8==3.7.9
|
| 69 |
+
flask-cors==3.0.10
|
| 70 |
+
flask==1.1.2
|
| 71 |
+
flatbuffers==1.12
|
| 72 |
+
flax==0.3.4
|
| 73 |
+
fsspec==2021.6.1
|
| 74 |
+
fugashi==1.1.0
|
| 75 |
+
future==0.18.2
|
| 76 |
+
gast==0.3.3
|
| 77 |
+
gcs-oauth2-boto-plugin==2.7
|
| 78 |
+
gitdb==4.0.7
|
| 79 |
+
gitpython==3.1.18
|
| 80 |
+
google-api-core==1.26.3
|
| 81 |
+
google-api-python-client==1.8.0
|
| 82 |
+
google-apitools==0.5.32
|
| 83 |
+
google-auth-httplib2==0.1.0
|
| 84 |
+
google-auth-oauthlib==0.4.4
|
| 85 |
+
google-auth==1.30.0
|
| 86 |
+
google-pasta==0.2.0
|
| 87 |
+
google-reauth==0.1.1
|
| 88 |
+
googleapis-common-protos==1.53.0
|
| 89 |
+
grpcio==1.32.0
|
| 90 |
+
gsutil==4.62
|
| 91 |
+
gviz-api==1.9.0
|
| 92 |
+
h5py==2.10.0
|
| 93 |
+
hdfs==2.6.0
|
| 94 |
+
httplib2==0.19.1
|
| 95 |
+
huggingface-hub==0.0.8
|
| 96 |
+
hydra-core==1.0.7
|
| 97 |
+
idna-ssl==1.1.0
|
| 98 |
+
idna==2.10
|
| 99 |
+
imagesize==1.2.0
|
| 100 |
+
importlib-metadata==4.0.1
|
| 101 |
+
importlib-resources==3.3.1
|
| 102 |
+
iniconfig==1.1.1
|
| 103 |
+
intel-openmp==2021.2.0
|
| 104 |
+
ipadic==1.0.0
|
| 105 |
+
ipdb==0.13.7
|
| 106 |
+
ipython-genutils==0.2.0
|
| 107 |
+
ipython==7.16.1
|
| 108 |
+
isort==5.8.0
|
| 109 |
+
itsdangerous==1.1.0
|
| 110 |
+
jax==0.2.17
|
| 111 |
+
jaxlib==0.1.68
|
| 112 |
+
jedi==0.17.2
|
| 113 |
+
jinja2-time==0.2.0
|
| 114 |
+
jinja2==2.11.3
|
| 115 |
+
jiwer==2.2.0
|
| 116 |
+
jmespath==0.10.0
|
| 117 |
+
joblib==1.0.1
|
| 118 |
+
jsondiff==1.3.0
|
| 119 |
+
jsonpatch==1.32
|
| 120 |
+
jsonpointer==2.1
|
| 121 |
+
jsonschema==3.2.0
|
| 122 |
+
junit-xml==1.9
|
| 123 |
+
keras-preprocessing==1.1.2
|
| 124 |
+
keras2onnx==1.7.0
|
| 125 |
+
kiwisolver==1.3.1
|
| 126 |
+
langdetect==1.0.8
|
| 127 |
+
librosa==0.8.1
|
| 128 |
+
libtpu-nightly==0.1.dev20210615
|
| 129 |
+
llvmlite==0.36.0
|
| 130 |
+
lxml==4.6.3
|
| 131 |
+
markdown==3.3.4
|
| 132 |
+
markupsafe==1.1.1
|
| 133 |
+
matplotlib==3.3.4
|
| 134 |
+
mccabe==0.6.1
|
| 135 |
+
mkl==2021.2.0
|
| 136 |
+
mock==2.0.0
|
| 137 |
+
monotonic==1.6
|
| 138 |
+
more-itertools==8.7.0
|
| 139 |
+
moto==2.0.4
|
| 140 |
+
msgpack==1.0.2
|
| 141 |
+
multidict==5.1.0
|
| 142 |
+
multiprocess==0.70.9
|
| 143 |
+
multivolumefile==0.2.2
|
| 144 |
+
mwparserfromhell==0.6
|
| 145 |
+
mypy-extensions==0.4.3
|
| 146 |
+
networkx==2.5.1
|
| 147 |
+
nltk==3.6.2
|
| 148 |
+
numba==0.53.1
|
| 149 |
+
numpy==1.19.5
|
| 150 |
+
oauth2client==4.1.3
|
| 151 |
+
oauthlib==3.1.0
|
| 152 |
+
omegaconf==2.0.6
|
| 153 |
+
onnx==1.9.0
|
| 154 |
+
onnxconverter-common==1.8.1
|
| 155 |
+
openpyxl==3.0.7
|
| 156 |
+
opt-einsum==3.3.0
|
| 157 |
+
optax==0.0.9
|
| 158 |
+
packaging==20.9
|
| 159 |
+
pandas==1.1.5
|
| 160 |
+
parameterized==0.8.1
|
| 161 |
+
parso==0.7.1
|
| 162 |
+
pathspec==0.8.1
|
| 163 |
+
pathtools==0.1.2
|
| 164 |
+
pbr==5.6.0
|
| 165 |
+
pexpect==4.8.0
|
| 166 |
+
pickleshare==0.7.5
|
| 167 |
+
pillow==8.2.0
|
| 168 |
+
pip==21.1
|
| 169 |
+
pkg-resources==0.0.0
|
| 170 |
+
plac==1.3.3
|
| 171 |
+
pluggy==0.13.1
|
| 172 |
+
pooch==1.4.0
|
| 173 |
+
portalocker==2.0.0
|
| 174 |
+
poyo==0.5.0
|
| 175 |
+
ppmd-cffi==0.4.2
|
| 176 |
+
promise==2.3
|
| 177 |
+
prompt-toolkit==3.0.18
|
| 178 |
+
protobuf==3.15.8
|
| 179 |
+
psutil==5.8.0
|
| 180 |
+
ptyprocess==0.7.0
|
| 181 |
+
py7zr==0.15.1
|
| 182 |
+
py==1.10.0
|
| 183 |
+
pyarrow==2.0.0
|
| 184 |
+
pyasn1-modules==0.2.8
|
| 185 |
+
pyasn1==0.4.8
|
| 186 |
+
pycodestyle==2.5.0
|
| 187 |
+
pycparser==2.20
|
| 188 |
+
pycryptodome==3.10.1
|
| 189 |
+
pydot==1.4.2
|
| 190 |
+
pyflakes==2.1.1
|
| 191 |
+
pygments==2.8.1
|
| 192 |
+
pymongo==3.11.3
|
| 193 |
+
pyopenssl==20.0.1
|
| 194 |
+
pyparsing==2.4.7
|
| 195 |
+
pyrsistent==0.17.3
|
| 196 |
+
pytest-forked==1.3.0
|
| 197 |
+
pytest-sugar==0.9.4
|
| 198 |
+
pytest-xdist==2.2.1
|
| 199 |
+
pytest==6.2.3
|
| 200 |
+
python-dateutil==2.8.1
|
| 201 |
+
python-jose==3.2.0
|
| 202 |
+
python-levenshtein==0.12.2
|
| 203 |
+
python-slugify==4.0.1
|
| 204 |
+
pytorch-lightning==1.1.2
|
| 205 |
+
pytorch-nlp==0.5.0
|
| 206 |
+
pytz==2021.1
|
| 207 |
+
pyu2f==0.1.5
|
| 208 |
+
pyyaml==5.4.1
|
| 209 |
+
pyzstd==0.14.4
|
| 210 |
+
rarfile==4.0
|
| 211 |
+
recommonmark==0.7.1
|
| 212 |
+
regex==2021.4.4
|
| 213 |
+
requests-file==1.5.1
|
| 214 |
+
requests-oauthlib==1.3.0
|
| 215 |
+
requests==2.25.1
|
| 216 |
+
resampy==0.2.2
|
| 217 |
+
responses==0.13.2
|
| 218 |
+
retry-decorator==1.1.1
|
| 219 |
+
rouge-score==0.0.4
|
| 220 |
+
rsa==4.7.2
|
| 221 |
+
s3fs==0.4.2
|
| 222 |
+
s3transfer==0.3.7
|
| 223 |
+
sacrebleu==1.5.1
|
| 224 |
+
sacremoses==0.0.45
|
| 225 |
+
scikit-learn==0.24.1
|
| 226 |
+
scipy==1.5.4
|
| 227 |
+
sentencepiece==0.1.91
|
| 228 |
+
sentry-sdk==1.3.1
|
| 229 |
+
seqeval==1.2.2
|
| 230 |
+
setuptools==56.0.0
|
| 231 |
+
shortuuid==1.0.1
|
| 232 |
+
six==1.15.0
|
| 233 |
+
sklearn==0.0
|
| 234 |
+
smmap==4.0.0
|
| 235 |
+
snowballstemmer==2.1.0
|
| 236 |
+
soundfile==0.10.3.post1
|
| 237 |
+
soupsieve==2.2.1
|
| 238 |
+
sphinx-copybutton==0.3.1
|
| 239 |
+
sphinx-markdown-tables==0.0.15
|
| 240 |
+
sphinx-rtd-theme==0.4.3
|
| 241 |
+
sphinx==3.2.1
|
| 242 |
+
sphinxcontrib-applehelp==1.0.2
|
| 243 |
+
sphinxcontrib-devhelp==1.0.2
|
| 244 |
+
sphinxcontrib-htmlhelp==1.0.3
|
| 245 |
+
sphinxcontrib-jsmath==1.0.1
|
| 246 |
+
sphinxcontrib-qthelp==1.0.3
|
| 247 |
+
sphinxcontrib-serializinghtml==1.1.4
|
| 248 |
+
sphinxext-opengraph==0.4.1
|
| 249 |
+
sshpubkeys==3.3.1
|
| 250 |
+
style==1.1.0
|
| 251 |
+
subprocess32==3.5.4
|
| 252 |
+
tbb==2021.2.0
|
| 253 |
+
tbp-nightly==2.5.0a20210511
|
| 254 |
+
tensorboard-data-server==0.6.0
|
| 255 |
+
tensorboard-plugin-wit==1.8.0
|
| 256 |
+
tensorboard==2.5.0
|
| 257 |
+
tensorflow-estimator==2.4.0
|
| 258 |
+
tensorflow==2.4.1
|
| 259 |
+
termcolor==1.1.0
|
| 260 |
+
text-unidecode==1.3
|
| 261 |
+
texttable==1.6.3
|
| 262 |
+
threadpoolctl==2.1.0
|
| 263 |
+
timeout-decorator==0.5.0
|
| 264 |
+
tldextract==3.1.0
|
| 265 |
+
tokenizers==0.10.2
|
| 266 |
+
toml==0.10.2
|
| 267 |
+
toolz==0.11.1
|
| 268 |
+
torch==1.9.0
|
| 269 |
+
torchaudio==0.8.1
|
| 270 |
+
torchvision==0.7.0a0+a6073f0
|
| 271 |
+
tqdm==4.49.0
|
| 272 |
+
traitlets==4.3.3
|
| 273 |
+
transformers==4.9.0.dev0
|
| 274 |
+
typed-ast==1.4.3
|
| 275 |
+
typing-extensions==3.7.4.3
|
| 276 |
+
unidic-lite==1.0.8
|
| 277 |
+
unidic==1.0.3
|
| 278 |
+
update==0.0.1
|
| 279 |
+
uritemplate==3.0.1
|
| 280 |
+
urllib3==1.26.4
|
| 281 |
+
wandb==0.12.1
|
| 282 |
+
wasabi==0.8.2
|
| 283 |
+
wcwidth==0.2.5
|
| 284 |
+
websocket-client==0.58.0
|
| 285 |
+
werkzeug==1.0.1
|
| 286 |
+
wget==3.2
|
| 287 |
+
wheel==0.36.2
|
| 288 |
+
wrapt==1.12.1
|
| 289 |
+
xmltodict==0.12.0
|
| 290 |
+
xxhash==2.0.2
|
| 291 |
+
yarl==1.6.3
|
| 292 |
+
zipp==3.4.1
|
| 293 |
+
zstandard==0.15.2
|
wandb/run-20210907_084857-bmxot28l/files/wandb-metadata.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"os": "Linux-5.4.0-1042-gcp-x86_64-with-Ubuntu-18.04-bionic",
|
| 3 |
+
"python": "3.6.9",
|
| 4 |
+
"heartbeatAt": "2021-09-07T08:48:59.818731",
|
| 5 |
+
"startedAt": "2021-09-07T08:48:57.134297",
|
| 6 |
+
"docker": null,
|
| 7 |
+
"cpu_count": 96,
|
| 8 |
+
"cuda": null,
|
| 9 |
+
"args": [
|
| 10 |
+
"--output_dir=./",
|
| 11 |
+
"--num_train_epochs=1000",
|
| 12 |
+
"--warmup_steps=32000",
|
| 13 |
+
"--dataset_name=patrickvonplaten/librispeech_local",
|
| 14 |
+
"--dataset_config_name=clean",
|
| 15 |
+
"--train_split_name=train",
|
| 16 |
+
"--per_device_train_batch_size=16",
|
| 17 |
+
"--per_device_eval_batch_size=16",
|
| 18 |
+
"--learning_rate=0.0005",
|
| 19 |
+
"--weight_decay=0.01",
|
| 20 |
+
"--model_name_or_path=./",
|
| 21 |
+
"--logging_steps=1",
|
| 22 |
+
"--max_duration_in_seconds=8.0",
|
| 23 |
+
"--adam_beta1=0.9",
|
| 24 |
+
"--adam_beta2=0.98",
|
| 25 |
+
"--adam_epsilon=1e-06"
|
| 26 |
+
],
|
| 27 |
+
"state": "running",
|
| 28 |
+
"program": "./run_wav2vec2_pretrain_flax.py",
|
| 29 |
+
"codePath": "run_wav2vec2_pretrain_flax.py",
|
| 30 |
+
"git": {
|
| 31 |
+
"remote": "https://huggingface.co/patrickvonplaten/wav2vec2_libri",
|
| 32 |
+
"commit": "365d5efbbfdc7c14d0dfcf152e1a1f1de74aa15d"
|
| 33 |
+
},
|
| 34 |
+
"email": "patrick@huggingface.co",
|
| 35 |
+
"root": "/home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri",
|
| 36 |
+
"host": "t1v-n-71556209-w-0",
|
| 37 |
+
"username": "patrick",
|
| 38 |
+
"executable": "/home/patrick/hf_flax_tpu/bin/python3"
|
| 39 |
+
}
|
wandb/run-20210907_084857-bmxot28l/files/wandb-summary.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"_wandb": {"runtime": 39}}
|
wandb/run-20210907_084857-bmxot28l/logs/debug-internal.log
ADDED
|
@@ -0,0 +1,148 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
2021-09-07 08:48:57,831 INFO MainThread:85206 [internal.py:wandb_internal():89] W&B internal server running at pid: 85206, started at: 2021-09-07 08:48:57.831699
|
| 2 |
+
2021-09-07 08:48:57,834 INFO WriterThread:85206 [datastore.py:open_for_write():77] open: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/run-bmxot28l.wandb
|
| 3 |
+
2021-09-07 08:48:57,835 DEBUG SenderThread:85206 [sender.py:send():182] send: header
|
| 4 |
+
2021-09-07 08:48:57,835 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: check_version
|
| 5 |
+
2021-09-07 08:48:57,835 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: check_version
|
| 6 |
+
2021-09-07 08:48:57,875 DEBUG SenderThread:85206 [sender.py:send():182] send: run
|
| 7 |
+
2021-09-07 08:48:58,075 INFO SenderThread:85206 [dir_watcher.py:__init__():169] watching files in: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files
|
| 8 |
+
2021-09-07 08:48:58,075 INFO SenderThread:85206 [sender.py:_start_run_threads():743] run started: bmxot28l with start time 1631004537
|
| 9 |
+
2021-09-07 08:48:58,075 DEBUG SenderThread:85206 [sender.py:send():182] send: summary
|
| 10 |
+
2021-09-07 08:48:58,076 INFO SenderThread:85206 [sender.py:_save_file():873] saving file wandb-summary.json with policy end
|
| 11 |
+
2021-09-07 08:48:58,077 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: run_start
|
| 12 |
+
2021-09-07 08:48:59,079 INFO Thread-8 :85206 [dir_watcher.py:_on_file_created():217] file/dir created: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/wandb-summary.json
|
| 13 |
+
2021-09-07 08:48:59,818 DEBUG HandlerThread:85206 [meta.py:__init__():40] meta init
|
| 14 |
+
2021-09-07 08:48:59,818 DEBUG HandlerThread:85206 [meta.py:__init__():54] meta init done
|
| 15 |
+
2021-09-07 08:48:59,818 DEBUG HandlerThread:85206 [meta.py:probe():211] probe
|
| 16 |
+
2021-09-07 08:48:59,820 DEBUG HandlerThread:85206 [meta.py:_setup_git():201] setup git
|
| 17 |
+
2021-09-07 08:48:59,842 DEBUG HandlerThread:85206 [meta.py:_setup_git():208] setup git done
|
| 18 |
+
2021-09-07 08:48:59,843 DEBUG HandlerThread:85206 [meta.py:_save_pip():58] save pip
|
| 19 |
+
2021-09-07 08:48:59,843 DEBUG HandlerThread:85206 [meta.py:_save_pip():72] save pip done
|
| 20 |
+
2021-09-07 08:48:59,843 DEBUG HandlerThread:85206 [meta.py:probe():249] probe done
|
| 21 |
+
2021-09-07 08:48:59,846 DEBUG SenderThread:85206 [sender.py:send():182] send: files
|
| 22 |
+
2021-09-07 08:48:59,846 INFO SenderThread:85206 [sender.py:_save_file():873] saving file wandb-metadata.json with policy now
|
| 23 |
+
2021-09-07 08:48:59,854 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: stop_status
|
| 24 |
+
2021-09-07 08:48:59,854 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: stop_status
|
| 25 |
+
2021-09-07 08:49:00,079 INFO Thread-8 :85206 [dir_watcher.py:_on_file_created():217] file/dir created: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/requirements.txt
|
| 26 |
+
2021-09-07 08:49:00,080 INFO Thread-8 :85206 [dir_watcher.py:_on_file_created():217] file/dir created: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/output.log
|
| 27 |
+
2021-09-07 08:49:00,080 INFO Thread-8 :85206 [dir_watcher.py:_on_file_created():217] file/dir created: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/wandb-metadata.json
|
| 28 |
+
2021-09-07 08:49:00,318 INFO Thread-11 :85206 [upload_job.py:push():137] Uploaded file /tmp/tmprxsbzvczwandb/18957dvg-wandb-metadata.json
|
| 29 |
+
2021-09-07 08:49:02,080 INFO Thread-8 :85206 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/output.log
|
| 30 |
+
2021-09-07 08:49:07,142 INFO Thread-8 :85206 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/output.log
|
| 31 |
+
2021-09-07 08:49:09,143 INFO Thread-8 :85206 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/output.log
|
| 32 |
+
2021-09-07 08:49:14,990 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: stop_status
|
| 33 |
+
2021-09-07 08:49:14,990 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: stop_status
|
| 34 |
+
2021-09-07 08:49:19,147 INFO Thread-8 :85206 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/output.log
|
| 35 |
+
2021-09-07 08:49:21,148 INFO Thread-8 :85206 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/output.log
|
| 36 |
+
2021-09-07 08:49:27,999 DEBUG SenderThread:85206 [sender.py:send():182] send: stats
|
| 37 |
+
2021-09-07 08:49:30,127 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: stop_status
|
| 38 |
+
2021-09-07 08:49:30,128 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: stop_status
|
| 39 |
+
2021-09-07 08:49:37,154 INFO Thread-8 :85206 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/output.log
|
| 40 |
+
2021-09-07 08:49:37,533 DEBUG SenderThread:85206 [sender.py:send():182] send: telemetry
|
| 41 |
+
2021-09-07 08:49:37,533 DEBUG SenderThread:85206 [sender.py:send():182] send: exit
|
| 42 |
+
2021-09-07 08:49:37,534 INFO SenderThread:85206 [sender.py:send_exit():291] handling exit code: 1
|
| 43 |
+
2021-09-07 08:49:37,534 INFO SenderThread:85206 [sender.py:send_exit():293] handling runtime: 39
|
| 44 |
+
2021-09-07 08:49:37,535 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: poll_exit
|
| 45 |
+
2021-09-07 08:49:37,535 INFO SenderThread:85206 [sender.py:_save_file():873] saving file wandb-summary.json with policy end
|
| 46 |
+
2021-09-07 08:49:37,535 INFO SenderThread:85206 [sender.py:send_exit():303] send defer
|
| 47 |
+
2021-09-07 08:49:37,535 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: poll_exit
|
| 48 |
+
2021-09-07 08:49:37,536 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: defer
|
| 49 |
+
2021-09-07 08:49:37,536 INFO HandlerThread:85206 [handler.py:handle_request_defer():143] handle defer: 0
|
| 50 |
+
2021-09-07 08:49:37,536 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: defer
|
| 51 |
+
2021-09-07 08:49:37,536 INFO SenderThread:85206 [sender.py:send_request_defer():312] handle sender defer: 0
|
| 52 |
+
2021-09-07 08:49:37,536 INFO SenderThread:85206 [sender.py:transition_state():316] send defer: 1
|
| 53 |
+
2021-09-07 08:49:37,536 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: defer
|
| 54 |
+
2021-09-07 08:49:37,536 INFO HandlerThread:85206 [handler.py:handle_request_defer():143] handle defer: 1
|
| 55 |
+
2021-09-07 08:49:37,624 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: defer
|
| 56 |
+
2021-09-07 08:49:37,624 INFO SenderThread:85206 [sender.py:send_request_defer():312] handle sender defer: 1
|
| 57 |
+
2021-09-07 08:49:37,624 INFO SenderThread:85206 [sender.py:transition_state():316] send defer: 2
|
| 58 |
+
2021-09-07 08:49:37,624 DEBUG SenderThread:85206 [sender.py:send():182] send: stats
|
| 59 |
+
2021-09-07 08:49:37,624 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: defer
|
| 60 |
+
2021-09-07 08:49:37,624 INFO HandlerThread:85206 [handler.py:handle_request_defer():143] handle defer: 2
|
| 61 |
+
2021-09-07 08:49:37,625 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: defer
|
| 62 |
+
2021-09-07 08:49:37,625 INFO SenderThread:85206 [sender.py:send_request_defer():312] handle sender defer: 2
|
| 63 |
+
2021-09-07 08:49:37,625 INFO SenderThread:85206 [sender.py:transition_state():316] send defer: 3
|
| 64 |
+
2021-09-07 08:49:37,625 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: defer
|
| 65 |
+
2021-09-07 08:49:37,625 INFO HandlerThread:85206 [handler.py:handle_request_defer():143] handle defer: 3
|
| 66 |
+
2021-09-07 08:49:37,625 DEBUG SenderThread:85206 [sender.py:send():182] send: summary
|
| 67 |
+
2021-09-07 08:49:37,625 INFO SenderThread:85206 [sender.py:_save_file():873] saving file wandb-summary.json with policy end
|
| 68 |
+
2021-09-07 08:49:37,625 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: defer
|
| 69 |
+
2021-09-07 08:49:37,625 INFO SenderThread:85206 [sender.py:send_request_defer():312] handle sender defer: 3
|
| 70 |
+
2021-09-07 08:49:37,626 INFO SenderThread:85206 [sender.py:transition_state():316] send defer: 4
|
| 71 |
+
2021-09-07 08:49:37,626 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: defer
|
| 72 |
+
2021-09-07 08:49:37,626 INFO HandlerThread:85206 [handler.py:handle_request_defer():143] handle defer: 4
|
| 73 |
+
2021-09-07 08:49:37,626 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: defer
|
| 74 |
+
2021-09-07 08:49:37,626 INFO SenderThread:85206 [sender.py:send_request_defer():312] handle sender defer: 4
|
| 75 |
+
2021-09-07 08:49:37,638 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: poll_exit
|
| 76 |
+
2021-09-07 08:49:37,815 INFO SenderThread:85206 [sender.py:transition_state():316] send defer: 5
|
| 77 |
+
2021-09-07 08:49:37,815 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: poll_exit
|
| 78 |
+
2021-09-07 08:49:37,816 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: defer
|
| 79 |
+
2021-09-07 08:49:37,816 INFO HandlerThread:85206 [handler.py:handle_request_defer():143] handle defer: 5
|
| 80 |
+
2021-09-07 08:49:37,816 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: defer
|
| 81 |
+
2021-09-07 08:49:37,816 INFO SenderThread:85206 [sender.py:send_request_defer():312] handle sender defer: 5
|
| 82 |
+
2021-09-07 08:49:37,816 INFO SenderThread:85206 [dir_watcher.py:finish():283] shutting down directory watcher
|
| 83 |
+
2021-09-07 08:49:37,917 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: poll_exit
|
| 84 |
+
2021-09-07 08:49:38,154 INFO Thread-8 :85206 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/output.log
|
| 85 |
+
2021-09-07 08:49:38,155 INFO SenderThread:85206 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/config.yaml
|
| 86 |
+
2021-09-07 08:49:38,155 INFO SenderThread:85206 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/wandb-summary.json
|
| 87 |
+
2021-09-07 08:49:38,155 INFO SenderThread:85206 [dir_watcher.py:finish():313] scan: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files
|
| 88 |
+
2021-09-07 08:49:38,155 INFO SenderThread:85206 [dir_watcher.py:finish():327] scan save: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/wandb-summary.json wandb-summary.json
|
| 89 |
+
2021-09-07 08:49:38,155 INFO SenderThread:85206 [dir_watcher.py:finish():327] scan save: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/output.log output.log
|
| 90 |
+
2021-09-07 08:49:38,155 INFO SenderThread:85206 [dir_watcher.py:finish():327] scan save: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/requirements.txt requirements.txt
|
| 91 |
+
2021-09-07 08:49:38,156 INFO SenderThread:85206 [dir_watcher.py:finish():327] scan save: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/wandb-metadata.json wandb-metadata.json
|
| 92 |
+
2021-09-07 08:49:38,156 INFO SenderThread:85206 [dir_watcher.py:finish():327] scan save: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/config.yaml config.yaml
|
| 93 |
+
2021-09-07 08:49:38,156 INFO SenderThread:85206 [sender.py:transition_state():316] send defer: 6
|
| 94 |
+
2021-09-07 08:49:38,156 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: poll_exit
|
| 95 |
+
2021-09-07 08:49:38,159 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: defer
|
| 96 |
+
2021-09-07 08:49:38,159 INFO HandlerThread:85206 [handler.py:handle_request_defer():143] handle defer: 6
|
| 97 |
+
2021-09-07 08:49:38,160 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: defer
|
| 98 |
+
2021-09-07 08:49:38,160 INFO SenderThread:85206 [sender.py:send_request_defer():312] handle sender defer: 6
|
| 99 |
+
2021-09-07 08:49:38,160 INFO SenderThread:85206 [file_pusher.py:finish():177] shutting down file pusher
|
| 100 |
+
2021-09-07 08:49:38,258 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: poll_exit
|
| 101 |
+
2021-09-07 08:49:38,258 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: poll_exit
|
| 102 |
+
2021-09-07 08:49:38,360 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: poll_exit
|
| 103 |
+
2021-09-07 08:49:38,360 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: poll_exit
|
| 104 |
+
2021-09-07 08:49:38,462 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: poll_exit
|
| 105 |
+
2021-09-07 08:49:38,462 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: poll_exit
|
| 106 |
+
2021-09-07 08:49:38,564 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: poll_exit
|
| 107 |
+
2021-09-07 08:49:38,564 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: poll_exit
|
| 108 |
+
2021-09-07 08:49:38,628 INFO Thread-14 :85206 [upload_job.py:push():137] Uploaded file /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/requirements.txt
|
| 109 |
+
2021-09-07 08:49:38,640 INFO Thread-15 :85206 [upload_job.py:push():137] Uploaded file /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/config.yaml
|
| 110 |
+
2021-09-07 08:49:38,665 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: poll_exit
|
| 111 |
+
2021-09-07 08:49:38,666 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: poll_exit
|
| 112 |
+
2021-09-07 08:49:38,693 INFO Thread-12 :85206 [upload_job.py:push():137] Uploaded file /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/wandb-summary.json
|
| 113 |
+
2021-09-07 08:49:38,705 INFO Thread-13 :85206 [upload_job.py:push():137] Uploaded file /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/files/output.log
|
| 114 |
+
2021-09-07 08:49:38,767 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: poll_exit
|
| 115 |
+
2021-09-07 08:49:38,767 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: poll_exit
|
| 116 |
+
2021-09-07 08:49:38,869 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: poll_exit
|
| 117 |
+
2021-09-07 08:49:38,869 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: poll_exit
|
| 118 |
+
2021-09-07 08:49:38,906 INFO Thread-7 :85206 [sender.py:transition_state():316] send defer: 7
|
| 119 |
+
2021-09-07 08:49:38,906 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: defer
|
| 120 |
+
2021-09-07 08:49:38,906 INFO HandlerThread:85206 [handler.py:handle_request_defer():143] handle defer: 7
|
| 121 |
+
2021-09-07 08:49:38,906 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: defer
|
| 122 |
+
2021-09-07 08:49:38,906 INFO SenderThread:85206 [sender.py:send_request_defer():312] handle sender defer: 7
|
| 123 |
+
2021-09-07 08:49:38,971 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: poll_exit
|
| 124 |
+
2021-09-07 08:49:39,207 INFO SenderThread:85206 [sender.py:transition_state():316] send defer: 8
|
| 125 |
+
2021-09-07 08:49:39,207 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: poll_exit
|
| 126 |
+
2021-09-07 08:49:39,208 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: defer
|
| 127 |
+
2021-09-07 08:49:39,208 INFO HandlerThread:85206 [handler.py:handle_request_defer():143] handle defer: 8
|
| 128 |
+
2021-09-07 08:49:39,208 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: defer
|
| 129 |
+
2021-09-07 08:49:39,208 INFO SenderThread:85206 [sender.py:send_request_defer():312] handle sender defer: 8
|
| 130 |
+
2021-09-07 08:49:39,208 INFO SenderThread:85206 [sender.py:transition_state():316] send defer: 9
|
| 131 |
+
2021-09-07 08:49:39,208 DEBUG SenderThread:85206 [sender.py:send():182] send: final
|
| 132 |
+
2021-09-07 08:49:39,209 DEBUG SenderThread:85206 [sender.py:send():182] send: footer
|
| 133 |
+
2021-09-07 08:49:39,209 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: defer
|
| 134 |
+
2021-09-07 08:49:39,209 INFO HandlerThread:85206 [handler.py:handle_request_defer():143] handle defer: 9
|
| 135 |
+
2021-09-07 08:49:39,209 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: defer
|
| 136 |
+
2021-09-07 08:49:39,209 INFO SenderThread:85206 [sender.py:send_request_defer():312] handle sender defer: 9
|
| 137 |
+
2021-09-07 08:49:39,309 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: poll_exit
|
| 138 |
+
2021-09-07 08:49:39,309 DEBUG SenderThread:85206 [sender.py:send_request():196] send_request: poll_exit
|
| 139 |
+
2021-09-07 08:49:39,309 INFO SenderThread:85206 [file_pusher.py:join():182] waiting for file pusher
|
| 140 |
+
2021-09-07 08:49:39,310 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: get_summary
|
| 141 |
+
2021-09-07 08:49:39,311 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: sampled_history
|
| 142 |
+
2021-09-07 08:49:39,312 DEBUG HandlerThread:85206 [handler.py:handle_request():126] handle_request: shutdown
|
| 143 |
+
2021-09-07 08:49:39,312 INFO HandlerThread:85206 [handler.py:finish():683] shutting down handler
|
| 144 |
+
2021-09-07 08:49:40,209 INFO WriterThread:85206 [datastore.py:close():281] close: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/run-bmxot28l.wandb
|
| 145 |
+
2021-09-07 08:49:40,309 INFO SenderThread:85206 [sender.py:finish():979] shutting down sender
|
| 146 |
+
2021-09-07 08:49:40,309 INFO SenderThread:85206 [file_pusher.py:finish():177] shutting down file pusher
|
| 147 |
+
2021-09-07 08:49:40,310 INFO SenderThread:85206 [file_pusher.py:join():182] waiting for file pusher
|
| 148 |
+
2021-09-07 08:49:40,311 INFO MainThread:85206 [internal.py:handle_exit():76] Internal process exited
|
wandb/run-20210907_084857-bmxot28l/logs/debug.log
ADDED
|
@@ -0,0 +1,124 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
2021-09-07 08:48:57,135 INFO MainThread:85036 [wandb_setup.py:_flush():69] setting env: {}
|
| 2 |
+
2021-09-07 08:48:57,135 INFO MainThread:85036 [wandb_setup.py:_flush():69] setting login settings: {}
|
| 3 |
+
2021-09-07 08:48:57,135 INFO MainThread:85036 [wandb_init.py:_log_setup():342] Logging user logs to /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/logs/debug.log
|
| 4 |
+
2021-09-07 08:48:57,135 INFO MainThread:85036 [wandb_init.py:_log_setup():343] Logging internal logs to /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_084857-bmxot28l/logs/debug-internal.log
|
| 5 |
+
2021-09-07 08:48:57,135 INFO MainThread:85036 [wandb_init.py:init():375] calling init triggers
|
| 6 |
+
2021-09-07 08:48:57,135 INFO MainThread:85036 [wandb_init.py:init():382] wandb.init called with sweep_config: {}
|
| 7 |
+
config: {}
|
| 8 |
+
2021-09-07 08:48:57,135 INFO MainThread:85036 [wandb_init.py:init():424] starting backend
|
| 9 |
+
2021-09-07 08:48:57,135 INFO MainThread:85036 [backend.py:_multiprocessing_setup():72] multiprocessing start_methods=fork,spawn,forkserver, using: spawn
|
| 10 |
+
2021-09-07 08:48:57,147 INFO MainThread:85036 [backend.py:ensure_launched():135] starting backend process...
|
| 11 |
+
2021-09-07 08:48:57,155 INFO MainThread:85036 [backend.py:ensure_launched():140] started backend process with pid: 85206
|
| 12 |
+
2021-09-07 08:48:57,156 INFO MainThread:85036 [wandb_init.py:init():429] backend started and connected
|
| 13 |
+
2021-09-07 08:48:57,158 INFO MainThread:85036 [wandb_init.py:init():477] updated telemetry
|
| 14 |
+
2021-09-07 08:48:57,159 INFO MainThread:85036 [wandb_init.py:init():500] communicating current version
|
| 15 |
+
2021-09-07 08:48:57,874 INFO MainThread:85036 [wandb_init.py:init():505] got version response
|
| 16 |
+
2021-09-07 08:48:57,874 INFO MainThread:85036 [wandb_init.py:init():513] communicating run to backend with 30 second timeout
|
| 17 |
+
2021-09-07 08:48:58,076 INFO MainThread:85036 [wandb_init.py:init():540] starting run threads in backend
|
| 18 |
+
2021-09-07 08:48:59,850 INFO MainThread:85036 [wandb_run.py:_console_start():1601] atexit reg
|
| 19 |
+
2021-09-07 08:48:59,850 INFO MainThread:85036 [wandb_run.py:_redirect():1475] redirect: SettingsConsole.REDIRECT
|
| 20 |
+
2021-09-07 08:48:59,853 INFO MainThread:85036 [wandb_run.py:_redirect():1480] Redirecting console.
|
| 21 |
+
2021-09-07 08:48:59,855 INFO MainThread:85036 [wandb_run.py:_redirect():1536] Redirects installed.
|
| 22 |
+
2021-09-07 08:48:59,855 INFO MainThread:85036 [wandb_init.py:init():565] run started, returning control to user process
|
| 23 |
+
2021-09-07 08:49:35,103 INFO MainThread:85036 [wandb_run.py:_atexit_cleanup():1571] got exitcode: 1
|
| 24 |
+
2021-09-07 08:49:35,103 INFO MainThread:85036 [wandb_run.py:_restore():1543] restore
|
| 25 |
+
2021-09-07 08:49:37,536 INFO MainThread:85036 [wandb_run.py:_wait_for_finish():1693] got exit ret: file_counts {
|
| 26 |
+
wandb_count: 1
|
| 27 |
+
}
|
| 28 |
+
pusher_stats {
|
| 29 |
+
uploaded_bytes: 1349
|
| 30 |
+
total_bytes: 1349
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
2021-09-07 08:49:37,816 INFO MainThread:85036 [wandb_run.py:_wait_for_finish():1693] got exit ret: file_counts {
|
| 34 |
+
wandb_count: 1
|
| 35 |
+
}
|
| 36 |
+
pusher_stats {
|
| 37 |
+
uploaded_bytes: 1349
|
| 38 |
+
total_bytes: 1349
|
| 39 |
+
}
|
| 40 |
+
|
| 41 |
+
2021-09-07 08:49:38,157 INFO MainThread:85036 [wandb_run.py:_wait_for_finish():1693] got exit ret: file_counts {
|
| 42 |
+
wandb_count: 4
|
| 43 |
+
}
|
| 44 |
+
pusher_stats {
|
| 45 |
+
uploaded_bytes: 1349
|
| 46 |
+
total_bytes: 15591
|
| 47 |
+
}
|
| 48 |
+
|
| 49 |
+
2021-09-07 08:49:38,259 INFO MainThread:85036 [wandb_run.py:_wait_for_finish():1693] got exit ret: file_counts {
|
| 50 |
+
wandb_count: 5
|
| 51 |
+
}
|
| 52 |
+
pusher_stats {
|
| 53 |
+
uploaded_bytes: 1349
|
| 54 |
+
total_bytes: 16034
|
| 55 |
+
}
|
| 56 |
+
|
| 57 |
+
2021-09-07 08:49:38,361 INFO MainThread:85036 [wandb_run.py:_wait_for_finish():1693] got exit ret: file_counts {
|
| 58 |
+
wandb_count: 5
|
| 59 |
+
}
|
| 60 |
+
pusher_stats {
|
| 61 |
+
uploaded_bytes: 16034
|
| 62 |
+
total_bytes: 16034
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
2021-09-07 08:49:38,463 INFO MainThread:85036 [wandb_run.py:_wait_for_finish():1693] got exit ret: file_counts {
|
| 66 |
+
wandb_count: 5
|
| 67 |
+
}
|
| 68 |
+
pusher_stats {
|
| 69 |
+
uploaded_bytes: 16034
|
| 70 |
+
total_bytes: 16034
|
| 71 |
+
}
|
| 72 |
+
|
| 73 |
+
2021-09-07 08:49:38,564 INFO MainThread:85036 [wandb_run.py:_wait_for_finish():1693] got exit ret: file_counts {
|
| 74 |
+
wandb_count: 5
|
| 75 |
+
}
|
| 76 |
+
pusher_stats {
|
| 77 |
+
uploaded_bytes: 16034
|
| 78 |
+
total_bytes: 16034
|
| 79 |
+
}
|
| 80 |
+
|
| 81 |
+
2021-09-07 08:49:38,666 INFO MainThread:85036 [wandb_run.py:_wait_for_finish():1693] got exit ret: file_counts {
|
| 82 |
+
wandb_count: 5
|
| 83 |
+
}
|
| 84 |
+
pusher_stats {
|
| 85 |
+
uploaded_bytes: 16034
|
| 86 |
+
total_bytes: 16034
|
| 87 |
+
}
|
| 88 |
+
|
| 89 |
+
2021-09-07 08:49:38,768 INFO MainThread:85036 [wandb_run.py:_wait_for_finish():1693] got exit ret: file_counts {
|
| 90 |
+
wandb_count: 5
|
| 91 |
+
}
|
| 92 |
+
pusher_stats {
|
| 93 |
+
uploaded_bytes: 16034
|
| 94 |
+
total_bytes: 16034
|
| 95 |
+
}
|
| 96 |
+
|
| 97 |
+
2021-09-07 08:49:38,870 INFO MainThread:85036 [wandb_run.py:_wait_for_finish():1693] got exit ret: file_counts {
|
| 98 |
+
wandb_count: 5
|
| 99 |
+
}
|
| 100 |
+
pusher_stats {
|
| 101 |
+
uploaded_bytes: 16034
|
| 102 |
+
total_bytes: 16034
|
| 103 |
+
}
|
| 104 |
+
|
| 105 |
+
2021-09-07 08:49:39,208 INFO MainThread:85036 [wandb_run.py:_wait_for_finish():1693] got exit ret: file_counts {
|
| 106 |
+
wandb_count: 5
|
| 107 |
+
}
|
| 108 |
+
pusher_stats {
|
| 109 |
+
uploaded_bytes: 16034
|
| 110 |
+
total_bytes: 16034
|
| 111 |
+
}
|
| 112 |
+
|
| 113 |
+
2021-09-07 08:49:39,310 INFO MainThread:85036 [wandb_run.py:_wait_for_finish():1693] got exit ret: done: true
|
| 114 |
+
exit_result {
|
| 115 |
+
}
|
| 116 |
+
file_counts {
|
| 117 |
+
wandb_count: 5
|
| 118 |
+
}
|
| 119 |
+
pusher_stats {
|
| 120 |
+
uploaded_bytes: 16034
|
| 121 |
+
total_bytes: 16034
|
| 122 |
+
}
|
| 123 |
+
|
| 124 |
+
2021-09-07 08:49:40,682 INFO MainThread:85036 [wandb_run.py:_show_files():1915] logging synced files
|
wandb/run-20210907_084857-bmxot28l/run-bmxot28l.wandb
ADDED
|
Binary file (10.1 kB). View file
|
|
|
wandb/run-20210907_085010-xa9s4yt2/files/config.yaml
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
wandb_version: 1
|
| 2 |
+
|
| 3 |
+
_wandb:
|
| 4 |
+
desc: null
|
| 5 |
+
value:
|
| 6 |
+
cli_version: 0.12.1
|
| 7 |
+
framework: huggingface
|
| 8 |
+
huggingface_version: 4.10.0.dev0
|
| 9 |
+
is_jupyter_run: false
|
| 10 |
+
is_kaggle_kernel: false
|
| 11 |
+
python_version: 3.6.9
|
| 12 |
+
start_time: 1631004610
|
| 13 |
+
t:
|
| 14 |
+
1:
|
| 15 |
+
- 1
|
| 16 |
+
- 3
|
| 17 |
+
- 5
|
| 18 |
+
- 11
|
| 19 |
+
- 12
|
| 20 |
+
4: 3.6.9
|
| 21 |
+
5: 0.12.1
|
| 22 |
+
6: 4.10.0.dev0
|
| 23 |
+
8:
|
| 24 |
+
- 5
|
wandb/run-20210907_085010-xa9s4yt2/files/output.log
ADDED
|
@@ -0,0 +1,212 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
09/07/2021 08:50:14 - WARNING - datasets.builder - Using custom data configuration clean-5e73ba74b650b050
|
| 2 |
+
09/07/2021 08:50:14 - WARNING - datasets.builder - Reusing dataset librispeech_asr (/home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d)
|
| 3 |
+
09/07/2021 08:50:15 - WARNING - datasets.builder - Using custom data configuration clean-5e73ba74b650b050
|
| 4 |
+
09/07/2021 08:50:15 - WARNING - datasets.builder - Reusing dataset librispeech_asr (/home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d)
|
| 5 |
+
09/07/2021 08:50:16 - WARNING - datasets.builder - Using custom data configuration clean-5e73ba74b650b050
|
| 6 |
+
09/07/2021 08:50:16 - WARNING - datasets.builder - Reusing dataset librispeech_asr (/home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d)
|
| 7 |
+
09/07/2021 08:50:16 - WARNING - datasets.arrow_dataset - Loading cached processed dataset at /home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d/cache-db644ef2f80e3eb0.arrow
|
| 8 |
+
09/07/2021 08:50:16 - WARNING - datasets.arrow_dataset - Loading cached processed dataset at /home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d/cache-28ff0a758509a518.arrow
|
| 9 |
+
09/07/2021 08:50:16 - WARNING - datasets.arrow_dataset - Loading cached processed dataset at /home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d/cache-ebd4bfab3f9a52e1.arrow
|
| 10 |
+
09/07/2021 08:50:16 - WARNING - datasets.arrow_dataset - Loading cached processed dataset at /home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d/cache-22013ad6e1e490a3.arrow
|
| 11 |
+
09/07/2021 08:50:16 - WARNING - datasets.arrow_dataset - Loading cached processed dataset at /home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d/cache-76e336d8ca423b69.arrow
|
| 12 |
+
09/07/2021 08:50:16 - WARNING - datasets.arrow_dataset - Loading cached processed dataset at /home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d/cache-4434cc61a19cb118.arrow
|
| 13 |
+
09/07/2021 08:50:16 - INFO - absl - Starting the local TPU driver.
|
| 14 |
+
09/07/2021 08:50:16 - INFO - absl - Unable to initialize backend 'tpu_driver': Not found: Unable to find driver in registry given worker: local://
|
| 15 |
+
09/07/2021 08:50:16 - INFO - absl - Unable to initialize backend 'gpu': Not found: Could not find registered platform with name: "cuda". Available platform names are: TPU Interpreter Host
|
| 16 |
+
2021-09-07 08:50:30.721334: W tensorflow/stream_executor/platform/default/dso_loader.cc:60] Could not load dynamic library 'libcuda.so.1'; dlerror: libcuda.so.1: cannot open shared object file: No such file or directory; LD_LIBRARY_PATH: :/home/patrick/hf_flax_tpu/lib:/home/patrick/hf_flax_tpu/lib
|
| 17 |
+
2021-09-07 08:50:30.721379: W tensorflow/stream_executor/cuda/cuda_driver.cc:326] failed call to cuInit: UNKNOWN ERROR (303)
|
| 18 |
+
/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/lib/xla_bridge.py:387: UserWarning: jax.host_count has been renamed to jax.process_count. This alias will eventually be removed; please update your code.
|
| 19 |
+
"jax.host_count has been renamed to jax.process_count. This alias "
|
| 20 |
+
/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/jax/lib/xla_bridge.py:374: UserWarning: jax.host_id has been renamed to jax.process_index. This alias will eventually be removed; please update your code.
|
| 21 |
+
"jax.host_id has been renamed to jax.process_index. This alias "
|
| 22 |
+
09/07/2021 08:50:30 - INFO - absl - A polynomial schedule was set with a non-positive `transition_steps` value; this results in a constant schedule with value `init_value`.
|
| 23 |
+
Epoch ... (1/1000): 0%| | 0/1000 [00:00<?, ?it/s]
|
| 24 |
+
|
| 25 |
+
Training...: 6%|███▎ | 1/17 [02:26<39:02, 146.43s/it]
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
Training...: 18%|██████████ | 3/17 [02:47<18:00, 77.16s/it]
|
| 29 |
+
|
| 30 |
+
Training...: 24%|█████████████▍ | 4/17 [02:58<12:24, 57.30s/it]
|
| 31 |
+
Step... 3 | %_mask_idx: 0.148829 | %_neg_is_pos: 0.02009 | acc: 0.397615 | code_ppl: 65.296341 | contrast_loss: 4.614569 | diversity_loss: 0.897934 | gumbel_temp: 1.999968 | learn_rate: 0.0 | loss: 4.794156
|
| 32 |
+
|
| 33 |
+
Training...: 29%|████████████████▊ | 5/17 [03:09<08:39, 43.25s/it]
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
Training...: 41%|███████████████████████▍ | 7/17 [03:30<04:25, 26.58s/it]
|
| 37 |
+
|
| 38 |
+
Training...: 47%|██████████████████████████▊ | 8/17 [03:40<03:15, 21.71s/it]
|
| 39 |
+
|
| 40 |
+
Training...: 53%|██████████████████████████████▏ | 9/17 [03:50<02:26, 18.34s/it]
|
| 41 |
+
|
| 42 |
+
Training...: 59%|████████████████████████████████▉ | 10/17 [04:01<01:52, 16.02s/it]
|
| 43 |
+
|
| 44 |
+
Training...: 65%|████████████████████████████████████▏ | 11/17 [04:12<01:26, 14.45s/it]
|
| 45 |
+
Step... 10 | %_mask_idx: 0.154664 | %_neg_is_pos: 0.017656 | acc: 0.59001 | code_ppl: 64.84523 | contrast_loss: 4.486528 | diversity_loss: 0.898543 | gumbel_temp: 1.999897 | learn_rate: 0.0 | loss: 4.666236
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
Training...: 76%|██████████████████████████████████████████▊ | 13/17 [04:33<00:50, 12.57s/it]
|
| 49 |
+
Step... 12 | %_mask_idx: 0.147204 | %_neg_is_pos: 0.024369 | acc: 0.542137 | code_ppl: 64.376663 | contrast_loss: 4.484812 | diversity_loss: 0.899122 | gumbel_temp: 1.999878 | learn_rate: 0.0 | loss: 4.664637
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
Training...: 88%|█████████████████████████████████████████████████▍ | 15/17 [04:55<00:23, 11.56s/it]
|
| 53 |
+
|
| 54 |
+
Training...: 94%|████████████████████████████████████████████████████▋ | 16/17 [05:05<00:11, 11.21s/it]
|
| 55 |
+
Epoch ... (1/1000): 0%| | 1/1000 [05:16<87:56:58, 316.94s/it]
|
| 56 |
+
Training...: 0%| | 0/17 [00:00<?, ?it/s]
|
| 57 |
+
Step... 16 | %_mask_idx: 0.147282 | %_neg_is_pos: 0.018483 | acc: 0.70988 | code_ppl: 66.037872 | contrast_loss: 4.417307 | diversity_loss: 0.896782 | gumbel_temp: 1.999838 | learn_rate: 0.0 | loss: 4.596663
|
| 58 |
+
|
| 59 |
+
Training...: 6%|███▎ | 1/17 [00:10<02:44, 10.31s/it]
|
| 60 |
+
|
| 61 |
+
Training...: 12%|██████▋ | 2/17 [00:20<02:36, 10.40s/it]
|
| 62 |
+
|
| 63 |
+
Training...: 18%|██████████ | 3/17 [00:31<02:25, 10.42s/it]
|
| 64 |
+
|
| 65 |
+
|
| 66 |
+
Training...: 29%|████████████████▊ | 5/17 [00:52<02:06, 10.58s/it]
|
| 67 |
+
Step... 21 | %_mask_idx: 0.147224 | %_neg_is_pos: 0.021905 | acc: 0.647831 | code_ppl: 64.606194 | contrast_loss: 4.366142 | diversity_loss: 0.898966 | gumbel_temp: 1.999788 | learn_rate: 0.0 | loss: 4.545934
|
| 68 |
+
|
| 69 |
+
Training...: 35%|████████████████████ | 6/17 [01:03<01:57, 10.68s/it]
|
| 70 |
+
|
| 71 |
+
Training...: 41%|███████████████████████▍ | 7/17 [01:14<01:46, 10.64s/it]
|
| 72 |
+
|
| 73 |
+
|
| 74 |
+
Training...: 53%|██████████████████████████████▏ | 9/17 [01:35<01:25, 10.70s/it]
|
| 75 |
+
|
| 76 |
+
Training...: 59%|████████████████████████████████▉ | 10/17 [01:46<01:14, 10.60s/it]
|
| 77 |
+
|
| 78 |
+
Training...: 65%|████████████████████████████████████▏ | 11/17 [01:56<01:03, 10.61s/it]
|
| 79 |
+
Step... 27 | %_mask_idx: 0.141408 | %_neg_is_pos: 0.023796 | acc: 0.777647 | code_ppl: 64.749557 | contrast_loss: 4.030019 | diversity_loss: 0.899018 | gumbel_temp: 1.999727 | learn_rate: 0.0 | loss: 4.209823
|
| 80 |
+
|
| 81 |
+
|
| 82 |
+
Training...: 76%|██████████████████████████████████████████▊ | 13/17 [02:17<00:42, 10.56s/it]
|
| 83 |
+
|
| 84 |
+
Training...: 82%|██████████████████████████████████████████████ | 14/17 [02:28<00:31, 10.54s/it]
|
| 85 |
+
|
| 86 |
+
Training...: 88%|█████████████████████████████████████████████████▍ | 15/17 [02:38<00:21, 10.50s/it]
|
| 87 |
+
|
| 88 |
+
Training...: 94%|████████████████████████████████████████████████████▋ | 16/17 [02:49<00:10, 10.44s/it]
|
| 89 |
+
Epoch ... (1/1000): 0%| | 2/1000 [08:16<76:27:23, 275.80s/it]
|
| 90 |
+
Training...: 0%| | 0/17 [00:00<?, ?it/s]
|
| 91 |
+
|
| 92 |
+
Training...: 6%|███▎ | 1/17 [00:10<02:48, 10.56s/it]
|
| 93 |
+
|
| 94 |
+
Training...: 12%|██████▋ | 2/17 [00:21<02:38, 10.58s/it]
|
| 95 |
+
|
| 96 |
+
Training...: 18%|██████████ | 3/17 [00:31<02:28, 10.64s/it]
|
| 97 |
+
Step... 36 | %_mask_idx: 0.150944 | %_neg_is_pos: 0.015462 | acc: 0.68468 | code_ppl: 66.00061 | contrast_loss: 3.968953 | diversity_loss: 0.89669 | gumbel_temp: 1.999637 | learn_rate: 1e-06 | loss: 4.148291
|
| 98 |
+
|
| 99 |
+
Training...: 24%|█████████████▍ | 4/17 [00:42<02:19, 10.75s/it]
|
| 100 |
+
|
| 101 |
+
Training...: 29%|████████████████▊ | 5/17 [00:53<02:07, 10.62s/it]
|
| 102 |
+
|
| 103 |
+
|
| 104 |
+
Training...: 41%|███████████████████████▍ | 7/17 [01:13<01:44, 10.45s/it]
|
| 105 |
+
|
| 106 |
+
Training...: 47%|██████████████████████████▊ | 8/17 [01:24<01:34, 10.45s/it]
|
| 107 |
+
|
| 108 |
+
Training...: 53%|██████████████████████████████▏ | 9/17 [01:34<01:23, 10.38s/it]
|
| 109 |
+
|
| 110 |
+
Training...: 59%|████████████████████████████████▉ | 10/17 [01:45<01:12, 10.40s/it]
|
| 111 |
+
Step... 43 | %_mask_idx: 0.150846 | %_neg_is_pos: 0.014129 | acc: 0.687187 | code_ppl: 63.311432 | contrast_loss: 4.039135 | diversity_loss: 0.900887 | gumbel_temp: 1.999566 | learn_rate: 1e-06 | loss: 4.219313
|
| 112 |
+
|
| 113 |
+
Training...: 65%|████████████████████████████████████▏ | 11/17 [01:55<01:02, 10.35s/it]
|
| 114 |
+
|
| 115 |
+
|
| 116 |
+
Training...: 76%|██████████████████████████████████████████▊ | 13/17 [02:15<00:41, 10.30s/it]
|
| 117 |
+
|
| 118 |
+
Training...: 82%|██████████████████████████████████████████████ | 14/17 [02:25<00:30, 10.24s/it]
|
| 119 |
+
|
| 120 |
+
Training...: 88%|█████████████████████████████████████████████████▍ | 15/17 [02:36<00:20, 10.33s/it]
|
| 121 |
+
Step... 48 | %_mask_idx: 0.153802 | %_neg_is_pos: 0.017595 | acc: 0.644443 | code_ppl: 62.821945 | contrast_loss: 3.884152 | diversity_loss: 0.901863 | gumbel_temp: 1.999516 | learn_rate: 1e-06 | loss: 4.064525
|
| 122 |
+
|
| 123 |
+
Training...: 94%|████████████████████████████████████████████████████▋ | 16/17 [02:46<00:10, 10.34s/it]
|
| 124 |
+
Epoch ... (1/1000): 0%|▏ | 3/1000 [11:13<68:09:55, 246.13s/it]
|
| 125 |
+
Training...: 0%| | 0/17 [00:00<?, ?it/s]
|
| 126 |
+
|
| 127 |
+
Training...: 6%|███▎ | 1/17 [00:10<02:44, 10.30s/it]
|
| 128 |
+
|
| 129 |
+
|
| 130 |
+
Training...: 18%|██████████ | 3/17 [00:30<02:23, 10.28s/it]
|
| 131 |
+
|
| 132 |
+
Training...: 24%|█████████████▍ | 4/17 [00:40<02:12, 10.21s/it]
|
| 133 |
+
|
| 134 |
+
Training...: 29%|████████████████▊ | 5/17 [00:51<02:03, 10.28s/it]
|
| 135 |
+
|
| 136 |
+
Training...: 35%|████████████████████ | 6/17 [01:01<01:53, 10.28s/it]
|
| 137 |
+
Step... 56 | %_mask_idx: 0.146421 | %_neg_is_pos: 0.013453 | acc: 0.721942 | code_ppl: 62.72192 | contrast_loss: 4.029288 | diversity_loss: 0.901994 | gumbel_temp: 1.999436 | learn_rate: 1e-06 | loss: 4.209687
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
Training...: 47%|██████████████████████████▊ | 8/17 [01:21<01:31, 10.19s/it]
|
| 141 |
+
|
| 142 |
+
Training...: 53%|██████████████████████████████▏ | 9/17 [01:32<01:22, 10.25s/it]
|
| 143 |
+
|
| 144 |
+
Training...: 59%|████████████████████████████████▉ | 10/17 [01:42<01:12, 10.32s/it]
|
| 145 |
+
|
| 146 |
+
Training...: 65%|████████████████████████████████████▏ | 11/17 [01:52<01:01, 10.26s/it]
|
| 147 |
+
|
| 148 |
+
Training...: 71%|███████████████████████████████████████▌ | 12/17 [02:03<00:51, 10.34s/it]
|
| 149 |
+
|
| 150 |
+
Training...: 76%|███████████████████████████████████���██████▊ | 13/17 [02:13<00:41, 10.31s/it]
|
| 151 |
+
|
| 152 |
+
Training...: 82%|██████████████████████████████████████████████ | 14/17 [02:24<00:31, 10.43s/it]
|
| 153 |
+
Step... 64 | %_mask_idx: 0.151923 | %_neg_is_pos: 0.012708 | acc: 0.433114 | code_ppl: 62.871773 | contrast_loss: 4.64666 | diversity_loss: 0.901782 | gumbel_temp: 1.999356 | learn_rate: 1e-06 | loss: 4.827016
|
| 154 |
+
|
| 155 |
+
|
| 156 |
+
Training...: 94%|████████████████████████████████████████████████████▋ | 16/17 [02:44<00:10, 10.37s/it]
|
| 157 |
+
Step... 66 | %_mask_idx: 0.152138 | %_neg_is_pos: 0.010406 | acc: 0.584998 | code_ppl: 61.46981 | contrast_loss: 4.340511 | diversity_loss: 0.903897 | gumbel_temp: 1.999337 | learn_rate: 1e-06 | loss: 4.521291
|
| 158 |
+
Epoch ... (1/1000): 0%|▏ | 4/1000 [14:08<62:12:52, 224.87s/it]
|
| 159 |
+
|
| 160 |
+
Training...: 6%|███▎ | 1/17 [00:10<02:40, 10.01s/it]
|
| 161 |
+
|
| 162 |
+
Training...: 12%|██████▋ | 2/17 [00:20<02:30, 10.06s/it]
|
| 163 |
+
|
| 164 |
+
Training...: 18%|██████████ | 3/17 [00:30<02:22, 10.16s/it]
|
| 165 |
+
Step... 70 | %_mask_idx: 0.155741 | %_neg_is_pos: 0.01797 | acc: 0.655349 | code_ppl: 62.328838 | contrast_loss: 4.522501 | diversity_loss: 0.902651 | gumbel_temp: 1.999297 | learn_rate: 1e-06 | loss: 4.703031
|
| 166 |
+
|
| 167 |
+
Training...: 24%|█████████████▍ | 4/17 [00:40<02:12, 10.21s/it]
|
| 168 |
+
|
| 169 |
+
Training...: 29%|████████████████▊ | 5/17 [00:51<02:02, 10.20s/it]
|
| 170 |
+
|
| 171 |
+
Training...: 35%|████████████████████ | 6/17 [01:01<01:52, 10.22s/it]
|
| 172 |
+
|
| 173 |
+
|
| 174 |
+
Training...: 47%|██████████████████████████▊ | 8/17 [01:21<01:31, 10.22s/it]
|
| 175 |
+
Step... 75 | %_mask_idx: 0.141075 | %_neg_is_pos: 0.018648 | acc: 0.577087 | code_ppl: 57.249924 | contrast_loss: 4.386855 | diversity_loss: 0.910558 | gumbel_temp: 1.999247 | learn_rate: 1e-06 | loss: 4.568966
|
| 176 |
+
|
| 177 |
+
|
| 178 |
+
Training...: 59%|████████████████████████████████▉ | 10/17 [01:42<01:12, 10.29s/it]
|
| 179 |
+
Step... 77 | %_mask_idx: 0.146225 | %_neg_is_pos: 0.025055 | acc: 0.711995 | code_ppl: 58.103603 | contrast_loss: 4.043971 | diversity_loss: 0.909113 | gumbel_temp: 1.999226 | learn_rate: 1e-06 | loss: 4.225793
|
| 180 |
+
|
| 181 |
+
Training...: 65%|████████████████████████████████████▏ | 11/17 [01:52<01:01, 10.24s/it]
|
| 182 |
+
|
| 183 |
+
Training...: 71%|███████████████████████████████████████▌ | 12/17 [02:02<00:51, 10.26s/it]
|
| 184 |
+
|
| 185 |
+
Training...: 76%|██████████████████████████████████████████▊ | 13/17 [02:13<00:41, 10.31s/it]
|
| 186 |
+
|
| 187 |
+
|
| 188 |
+
Training...: 88%|█████████████████████████████████████████████████▍ | 15/17 [02:33<00:20, 10.17s/it]
|
| 189 |
+
|
| 190 |
+
Training...: 94%|████████████████████████████████████████████████████▋ | 16/17 [02:43<00:10, 10.25s/it]
|
| 191 |
+
Epoch ... (1/1000): 0%|▏ | 5/1000 [17:03<57:56:35, 209.64s/it]
|
| 192 |
+
Training...: 0%| | 0/17 [00:00<?, ?it/s]
|
| 193 |
+
Step... 84 | %_mask_idx: 0.14131 | %_neg_is_pos: 0.014478 | acc: 0.514822 | code_ppl: 54.038326 | contrast_loss: 4.383283 | diversity_loss: 0.915511 | gumbel_temp: 1.999157 | learn_rate: 1e-06 | loss: 4.566385
|
| 194 |
+
|
| 195 |
+
|
| 196 |
+
Training...: 12%|██████▋ | 2/17 [00:20<02:31, 10.12s/it]
|
| 197 |
+
|
| 198 |
+
Training...: 18%|██████████ | 3/17 [00:30<02:22, 10.21s/it]
|
| 199 |
+
|
| 200 |
+
Training...: 24%|█████████████▍ | 4/17 [00:41<02:13, 10.31s/it]
|
| 201 |
+
|
| 202 |
+
Training...: 29%|████████████████▊ | 5/17 [00:51<02:03, 10.29s/it]
|
| 203 |
+
|
| 204 |
+
Training...: 35%|████████████████████ | 6/17 [01:01<01:51, 10.17s/it]
|
| 205 |
+
Step... 90 | %_mask_idx: 0.141761 | %_neg_is_pos: 0.027947 | acc: 0.867814 | code_ppl: 49.4561 | contrast_loss: 3.399678 | diversity_loss: 0.922551 | gumbel_temp: 1.999096 | learn_rate: 1e-06 | loss: 3.584189
|
| 206 |
+
|
| 207 |
+
|
| 208 |
+
Training...: 47%|██████████████████████████▊ | 8/17 [01:21<01:31, 10.13s/it]
|
| 209 |
+
Step... 92 | %_mask_idx: 0.148947 | %_neg_is_pos: 0.028889 | acc: 0.711877 | code_ppl: 48.757538 | contrast_loss: 3.726825 | diversity_loss: 0.92388 | gumbel_temp: 1.999077 | learn_rate: 1e-06 | loss: 3.911601
|
| 210 |
+
|
| 211 |
+
|
| 212 |
+
Training...: 59%|████████████████████████████████▉ | 10/17 [01:42<01:11, 10.28s/it]
|
wandb/run-20210907_085010-xa9s4yt2/files/requirements.txt
ADDED
|
@@ -0,0 +1,293 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
absl-py==0.12.0
|
| 2 |
+
aiobotocore==1.2.2
|
| 3 |
+
aiohttp==3.7.4.post0
|
| 4 |
+
aioitertools==0.7.1
|
| 5 |
+
alabaster==0.7.12
|
| 6 |
+
antlr4-python3-runtime==4.8
|
| 7 |
+
apache-beam==2.28.0
|
| 8 |
+
apipkg==1.5
|
| 9 |
+
appdirs==1.4.4
|
| 10 |
+
argcomplete==1.12.3
|
| 11 |
+
arrow==1.0.3
|
| 12 |
+
astunparse==1.6.3
|
| 13 |
+
async-timeout==3.0.1
|
| 14 |
+
attrs==20.3.0
|
| 15 |
+
audioread==2.1.9
|
| 16 |
+
avro-python3==1.9.2.1
|
| 17 |
+
aws-sam-translator==1.35.0
|
| 18 |
+
aws-xray-sdk==2.7.0
|
| 19 |
+
babel==2.9.0
|
| 20 |
+
backcall==0.2.0
|
| 21 |
+
bcj-cffi==0.5.1
|
| 22 |
+
beautifulsoup4==4.9.3
|
| 23 |
+
bert-score==0.3.9
|
| 24 |
+
binaryornot==0.4.4
|
| 25 |
+
black==21.4b0
|
| 26 |
+
boto3==1.16.43
|
| 27 |
+
boto==2.49.0
|
| 28 |
+
botocore==1.19.52
|
| 29 |
+
bs4==0.0.1
|
| 30 |
+
cachetools==4.2.1
|
| 31 |
+
certifi==2020.12.5
|
| 32 |
+
cffi==1.14.5
|
| 33 |
+
cfn-lint==0.48.3
|
| 34 |
+
chardet==4.0.0
|
| 35 |
+
chex==0.0.6
|
| 36 |
+
click==7.1.2
|
| 37 |
+
cloud-tpu-client==0.10
|
| 38 |
+
cloud-tpu-profiler==2.4.0
|
| 39 |
+
commonmark==0.9.1
|
| 40 |
+
configparser==5.0.2
|
| 41 |
+
conllu==4.4
|
| 42 |
+
cookiecutter==1.7.2
|
| 43 |
+
crcmod==1.7
|
| 44 |
+
cryptography==3.4.7
|
| 45 |
+
cycler==0.10.0
|
| 46 |
+
cython==0.29.23
|
| 47 |
+
dataclasses==0.8
|
| 48 |
+
datasets==1.9.0
|
| 49 |
+
decorator==4.4.2
|
| 50 |
+
dill==0.3.1.1
|
| 51 |
+
dm-tree==0.1.6
|
| 52 |
+
docker-pycreds==0.4.0
|
| 53 |
+
docker==5.0.0
|
| 54 |
+
docopt==0.6.2
|
| 55 |
+
docutils==0.16
|
| 56 |
+
ecdsa==0.14.1
|
| 57 |
+
elasticsearch==7.12.0
|
| 58 |
+
entrypoints==0.3
|
| 59 |
+
et-xmlfile==1.1.0
|
| 60 |
+
execnet==1.8.0
|
| 61 |
+
fairseq==1.0.0a0+9825786
|
| 62 |
+
faiss-cpu==1.7.0
|
| 63 |
+
fastavro==1.4.0
|
| 64 |
+
fastbpe==0.1.0
|
| 65 |
+
fasteners==0.16
|
| 66 |
+
filelock==3.0.12
|
| 67 |
+
fire==0.4.0
|
| 68 |
+
flake8==3.7.9
|
| 69 |
+
flask-cors==3.0.10
|
| 70 |
+
flask==1.1.2
|
| 71 |
+
flatbuffers==1.12
|
| 72 |
+
flax==0.3.4
|
| 73 |
+
fsspec==2021.6.1
|
| 74 |
+
fugashi==1.1.0
|
| 75 |
+
future==0.18.2
|
| 76 |
+
gast==0.3.3
|
| 77 |
+
gcs-oauth2-boto-plugin==2.7
|
| 78 |
+
gitdb==4.0.7
|
| 79 |
+
gitpython==3.1.18
|
| 80 |
+
google-api-core==1.26.3
|
| 81 |
+
google-api-python-client==1.8.0
|
| 82 |
+
google-apitools==0.5.32
|
| 83 |
+
google-auth-httplib2==0.1.0
|
| 84 |
+
google-auth-oauthlib==0.4.4
|
| 85 |
+
google-auth==1.30.0
|
| 86 |
+
google-pasta==0.2.0
|
| 87 |
+
google-reauth==0.1.1
|
| 88 |
+
googleapis-common-protos==1.53.0
|
| 89 |
+
grpcio==1.32.0
|
| 90 |
+
gsutil==4.62
|
| 91 |
+
gviz-api==1.9.0
|
| 92 |
+
h5py==2.10.0
|
| 93 |
+
hdfs==2.6.0
|
| 94 |
+
httplib2==0.19.1
|
| 95 |
+
huggingface-hub==0.0.8
|
| 96 |
+
hydra-core==1.0.7
|
| 97 |
+
idna-ssl==1.1.0
|
| 98 |
+
idna==2.10
|
| 99 |
+
imagesize==1.2.0
|
| 100 |
+
importlib-metadata==4.0.1
|
| 101 |
+
importlib-resources==3.3.1
|
| 102 |
+
iniconfig==1.1.1
|
| 103 |
+
intel-openmp==2021.2.0
|
| 104 |
+
ipadic==1.0.0
|
| 105 |
+
ipdb==0.13.7
|
| 106 |
+
ipython-genutils==0.2.0
|
| 107 |
+
ipython==7.16.1
|
| 108 |
+
isort==5.8.0
|
| 109 |
+
itsdangerous==1.1.0
|
| 110 |
+
jax==0.2.17
|
| 111 |
+
jaxlib==0.1.68
|
| 112 |
+
jedi==0.17.2
|
| 113 |
+
jinja2-time==0.2.0
|
| 114 |
+
jinja2==2.11.3
|
| 115 |
+
jiwer==2.2.0
|
| 116 |
+
jmespath==0.10.0
|
| 117 |
+
joblib==1.0.1
|
| 118 |
+
jsondiff==1.3.0
|
| 119 |
+
jsonpatch==1.32
|
| 120 |
+
jsonpointer==2.1
|
| 121 |
+
jsonschema==3.2.0
|
| 122 |
+
junit-xml==1.9
|
| 123 |
+
keras-preprocessing==1.1.2
|
| 124 |
+
keras2onnx==1.7.0
|
| 125 |
+
kiwisolver==1.3.1
|
| 126 |
+
langdetect==1.0.8
|
| 127 |
+
librosa==0.8.1
|
| 128 |
+
libtpu-nightly==0.1.dev20210615
|
| 129 |
+
llvmlite==0.36.0
|
| 130 |
+
lxml==4.6.3
|
| 131 |
+
markdown==3.3.4
|
| 132 |
+
markupsafe==1.1.1
|
| 133 |
+
matplotlib==3.3.4
|
| 134 |
+
mccabe==0.6.1
|
| 135 |
+
mkl==2021.2.0
|
| 136 |
+
mock==2.0.0
|
| 137 |
+
monotonic==1.6
|
| 138 |
+
more-itertools==8.7.0
|
| 139 |
+
moto==2.0.4
|
| 140 |
+
msgpack==1.0.2
|
| 141 |
+
multidict==5.1.0
|
| 142 |
+
multiprocess==0.70.9
|
| 143 |
+
multivolumefile==0.2.2
|
| 144 |
+
mwparserfromhell==0.6
|
| 145 |
+
mypy-extensions==0.4.3
|
| 146 |
+
networkx==2.5.1
|
| 147 |
+
nltk==3.6.2
|
| 148 |
+
numba==0.53.1
|
| 149 |
+
numpy==1.19.5
|
| 150 |
+
oauth2client==4.1.3
|
| 151 |
+
oauthlib==3.1.0
|
| 152 |
+
omegaconf==2.0.6
|
| 153 |
+
onnx==1.9.0
|
| 154 |
+
onnxconverter-common==1.8.1
|
| 155 |
+
openpyxl==3.0.7
|
| 156 |
+
opt-einsum==3.3.0
|
| 157 |
+
optax==0.0.9
|
| 158 |
+
packaging==20.9
|
| 159 |
+
pandas==1.1.5
|
| 160 |
+
parameterized==0.8.1
|
| 161 |
+
parso==0.7.1
|
| 162 |
+
pathspec==0.8.1
|
| 163 |
+
pathtools==0.1.2
|
| 164 |
+
pbr==5.6.0
|
| 165 |
+
pexpect==4.8.0
|
| 166 |
+
pickleshare==0.7.5
|
| 167 |
+
pillow==8.2.0
|
| 168 |
+
pip==21.1
|
| 169 |
+
pkg-resources==0.0.0
|
| 170 |
+
plac==1.3.3
|
| 171 |
+
pluggy==0.13.1
|
| 172 |
+
pooch==1.4.0
|
| 173 |
+
portalocker==2.0.0
|
| 174 |
+
poyo==0.5.0
|
| 175 |
+
ppmd-cffi==0.4.2
|
| 176 |
+
promise==2.3
|
| 177 |
+
prompt-toolkit==3.0.18
|
| 178 |
+
protobuf==3.15.8
|
| 179 |
+
psutil==5.8.0
|
| 180 |
+
ptyprocess==0.7.0
|
| 181 |
+
py7zr==0.15.1
|
| 182 |
+
py==1.10.0
|
| 183 |
+
pyarrow==2.0.0
|
| 184 |
+
pyasn1-modules==0.2.8
|
| 185 |
+
pyasn1==0.4.8
|
| 186 |
+
pycodestyle==2.5.0
|
| 187 |
+
pycparser==2.20
|
| 188 |
+
pycryptodome==3.10.1
|
| 189 |
+
pydot==1.4.2
|
| 190 |
+
pyflakes==2.1.1
|
| 191 |
+
pygments==2.8.1
|
| 192 |
+
pymongo==3.11.3
|
| 193 |
+
pyopenssl==20.0.1
|
| 194 |
+
pyparsing==2.4.7
|
| 195 |
+
pyrsistent==0.17.3
|
| 196 |
+
pytest-forked==1.3.0
|
| 197 |
+
pytest-sugar==0.9.4
|
| 198 |
+
pytest-xdist==2.2.1
|
| 199 |
+
pytest==6.2.3
|
| 200 |
+
python-dateutil==2.8.1
|
| 201 |
+
python-jose==3.2.0
|
| 202 |
+
python-levenshtein==0.12.2
|
| 203 |
+
python-slugify==4.0.1
|
| 204 |
+
pytorch-lightning==1.1.2
|
| 205 |
+
pytorch-nlp==0.5.0
|
| 206 |
+
pytz==2021.1
|
| 207 |
+
pyu2f==0.1.5
|
| 208 |
+
pyyaml==5.4.1
|
| 209 |
+
pyzstd==0.14.4
|
| 210 |
+
rarfile==4.0
|
| 211 |
+
recommonmark==0.7.1
|
| 212 |
+
regex==2021.4.4
|
| 213 |
+
requests-file==1.5.1
|
| 214 |
+
requests-oauthlib==1.3.0
|
| 215 |
+
requests==2.25.1
|
| 216 |
+
resampy==0.2.2
|
| 217 |
+
responses==0.13.2
|
| 218 |
+
retry-decorator==1.1.1
|
| 219 |
+
rouge-score==0.0.4
|
| 220 |
+
rsa==4.7.2
|
| 221 |
+
s3fs==0.4.2
|
| 222 |
+
s3transfer==0.3.7
|
| 223 |
+
sacrebleu==1.5.1
|
| 224 |
+
sacremoses==0.0.45
|
| 225 |
+
scikit-learn==0.24.1
|
| 226 |
+
scipy==1.5.4
|
| 227 |
+
sentencepiece==0.1.91
|
| 228 |
+
sentry-sdk==1.3.1
|
| 229 |
+
seqeval==1.2.2
|
| 230 |
+
setuptools==56.0.0
|
| 231 |
+
shortuuid==1.0.1
|
| 232 |
+
six==1.15.0
|
| 233 |
+
sklearn==0.0
|
| 234 |
+
smmap==4.0.0
|
| 235 |
+
snowballstemmer==2.1.0
|
| 236 |
+
soundfile==0.10.3.post1
|
| 237 |
+
soupsieve==2.2.1
|
| 238 |
+
sphinx-copybutton==0.3.1
|
| 239 |
+
sphinx-markdown-tables==0.0.15
|
| 240 |
+
sphinx-rtd-theme==0.4.3
|
| 241 |
+
sphinx==3.2.1
|
| 242 |
+
sphinxcontrib-applehelp==1.0.2
|
| 243 |
+
sphinxcontrib-devhelp==1.0.2
|
| 244 |
+
sphinxcontrib-htmlhelp==1.0.3
|
| 245 |
+
sphinxcontrib-jsmath==1.0.1
|
| 246 |
+
sphinxcontrib-qthelp==1.0.3
|
| 247 |
+
sphinxcontrib-serializinghtml==1.1.4
|
| 248 |
+
sphinxext-opengraph==0.4.1
|
| 249 |
+
sshpubkeys==3.3.1
|
| 250 |
+
style==1.1.0
|
| 251 |
+
subprocess32==3.5.4
|
| 252 |
+
tbb==2021.2.0
|
| 253 |
+
tbp-nightly==2.5.0a20210511
|
| 254 |
+
tensorboard-data-server==0.6.0
|
| 255 |
+
tensorboard-plugin-wit==1.8.0
|
| 256 |
+
tensorboard==2.5.0
|
| 257 |
+
tensorflow-estimator==2.4.0
|
| 258 |
+
tensorflow==2.4.1
|
| 259 |
+
termcolor==1.1.0
|
| 260 |
+
text-unidecode==1.3
|
| 261 |
+
texttable==1.6.3
|
| 262 |
+
threadpoolctl==2.1.0
|
| 263 |
+
timeout-decorator==0.5.0
|
| 264 |
+
tldextract==3.1.0
|
| 265 |
+
tokenizers==0.10.2
|
| 266 |
+
toml==0.10.2
|
| 267 |
+
toolz==0.11.1
|
| 268 |
+
torch==1.9.0
|
| 269 |
+
torchaudio==0.8.1
|
| 270 |
+
torchvision==0.7.0a0+a6073f0
|
| 271 |
+
tqdm==4.49.0
|
| 272 |
+
traitlets==4.3.3
|
| 273 |
+
transformers==4.9.0.dev0
|
| 274 |
+
typed-ast==1.4.3
|
| 275 |
+
typing-extensions==3.7.4.3
|
| 276 |
+
unidic-lite==1.0.8
|
| 277 |
+
unidic==1.0.3
|
| 278 |
+
update==0.0.1
|
| 279 |
+
uritemplate==3.0.1
|
| 280 |
+
urllib3==1.26.4
|
| 281 |
+
wandb==0.12.1
|
| 282 |
+
wasabi==0.8.2
|
| 283 |
+
wcwidth==0.2.5
|
| 284 |
+
websocket-client==0.58.0
|
| 285 |
+
werkzeug==1.0.1
|
| 286 |
+
wget==3.2
|
| 287 |
+
wheel==0.36.2
|
| 288 |
+
wrapt==1.12.1
|
| 289 |
+
xmltodict==0.12.0
|
| 290 |
+
xxhash==2.0.2
|
| 291 |
+
yarl==1.6.3
|
| 292 |
+
zipp==3.4.1
|
| 293 |
+
zstandard==0.15.2
|
wandb/run-20210907_085010-xa9s4yt2/files/wandb-metadata.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"os": "Linux-5.4.0-1042-gcp-x86_64-with-Ubuntu-18.04-bionic",
|
| 3 |
+
"python": "3.6.9",
|
| 4 |
+
"heartbeatAt": "2021-09-07T08:50:13.128024",
|
| 5 |
+
"startedAt": "2021-09-07T08:50:10.525558",
|
| 6 |
+
"docker": null,
|
| 7 |
+
"cpu_count": 96,
|
| 8 |
+
"cuda": null,
|
| 9 |
+
"args": [
|
| 10 |
+
"--output_dir=./",
|
| 11 |
+
"--num_train_epochs=1000",
|
| 12 |
+
"--warmup_steps=32000",
|
| 13 |
+
"--dataset_name=patrickvonplaten/librispeech_local",
|
| 14 |
+
"--dataset_config_name=clean",
|
| 15 |
+
"--train_split_name=train",
|
| 16 |
+
"--per_device_train_batch_size=16",
|
| 17 |
+
"--per_device_eval_batch_size=16",
|
| 18 |
+
"--learning_rate=0.0005",
|
| 19 |
+
"--weight_decay=0.01",
|
| 20 |
+
"--model_name_or_path=./",
|
| 21 |
+
"--logging_steps=1",
|
| 22 |
+
"--max_duration_in_seconds=8.0",
|
| 23 |
+
"--adam_beta1=0.9",
|
| 24 |
+
"--adam_beta2=0.98",
|
| 25 |
+
"--adam_epsilon=1e-06"
|
| 26 |
+
],
|
| 27 |
+
"state": "running",
|
| 28 |
+
"program": "./run_wav2vec2_pretrain_flax.py",
|
| 29 |
+
"codePath": "run_wav2vec2_pretrain_flax.py",
|
| 30 |
+
"git": {
|
| 31 |
+
"remote": "https://huggingface.co/patrickvonplaten/wav2vec2_libri",
|
| 32 |
+
"commit": "365d5efbbfdc7c14d0dfcf152e1a1f1de74aa15d"
|
| 33 |
+
},
|
| 34 |
+
"email": "patrick@huggingface.co",
|
| 35 |
+
"root": "/home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri",
|
| 36 |
+
"host": "t1v-n-71556209-w-0",
|
| 37 |
+
"username": "patrick",
|
| 38 |
+
"executable": "/home/patrick/hf_flax_tpu/bin/python3"
|
| 39 |
+
}
|
wandb/run-20210907_085010-xa9s4yt2/files/wandb-summary.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"%_mask_idx": 0.1511591523885727, "%_neg_is_pos": 0.04813283681869507, "acc": 0.6854244470596313, "code_ppl": 45.653076171875, "contrast_loss": 4.309719562530518, "diversity_loss": 0.928508996963501, "gumbel_temp": 1.9990558624267578, "learn_rate": 1.468753907829523e-06, "loss": 4.495421409606934, "_runtime": 1148, "_timestamp": 1631005758, "_step": 93}
|
wandb/run-20210907_085010-xa9s4yt2/logs/debug-internal.log
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
wandb/run-20210907_085010-xa9s4yt2/logs/debug.log
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
2021-09-07 08:50:10,526 INFO MainThread:86745 [wandb_setup.py:_flush():69] setting env: {}
|
| 2 |
+
2021-09-07 08:50:10,526 INFO MainThread:86745 [wandb_setup.py:_flush():69] setting login settings: {}
|
| 3 |
+
2021-09-07 08:50:10,526 INFO MainThread:86745 [wandb_init.py:_log_setup():342] Logging user logs to /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_085010-xa9s4yt2/logs/debug.log
|
| 4 |
+
2021-09-07 08:50:10,526 INFO MainThread:86745 [wandb_init.py:_log_setup():343] Logging internal logs to /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_085010-xa9s4yt2/logs/debug-internal.log
|
| 5 |
+
2021-09-07 08:50:10,526 INFO MainThread:86745 [wandb_init.py:init():375] calling init triggers
|
| 6 |
+
2021-09-07 08:50:10,527 INFO MainThread:86745 [wandb_init.py:init():382] wandb.init called with sweep_config: {}
|
| 7 |
+
config: {}
|
| 8 |
+
2021-09-07 08:50:10,527 INFO MainThread:86745 [wandb_init.py:init():424] starting backend
|
| 9 |
+
2021-09-07 08:50:10,527 INFO MainThread:86745 [backend.py:_multiprocessing_setup():72] multiprocessing start_methods=fork,spawn,forkserver, using: spawn
|
| 10 |
+
2021-09-07 08:50:10,538 INFO MainThread:86745 [backend.py:ensure_launched():135] starting backend process...
|
| 11 |
+
2021-09-07 08:50:10,546 INFO MainThread:86745 [backend.py:ensure_launched():140] started backend process with pid: 86893
|
| 12 |
+
2021-09-07 08:50:10,547 INFO MainThread:86745 [wandb_init.py:init():429] backend started and connected
|
| 13 |
+
2021-09-07 08:50:10,549 INFO MainThread:86745 [wandb_init.py:init():477] updated telemetry
|
| 14 |
+
2021-09-07 08:50:10,550 INFO MainThread:86745 [wandb_init.py:init():500] communicating current version
|
| 15 |
+
2021-09-07 08:50:11,282 INFO MainThread:86745 [wandb_init.py:init():505] got version response
|
| 16 |
+
2021-09-07 08:50:11,283 INFO MainThread:86745 [wandb_init.py:init():513] communicating run to backend with 30 second timeout
|
| 17 |
+
2021-09-07 08:50:11,458 INFO MainThread:86745 [wandb_init.py:init():540] starting run threads in backend
|
| 18 |
+
2021-09-07 08:50:13,160 INFO MainThread:86745 [wandb_run.py:_console_start():1601] atexit reg
|
| 19 |
+
2021-09-07 08:50:13,161 INFO MainThread:86745 [wandb_run.py:_redirect():1475] redirect: SettingsConsole.REDIRECT
|
| 20 |
+
2021-09-07 08:50:13,163 INFO MainThread:86745 [wandb_run.py:_redirect():1480] Redirecting console.
|
| 21 |
+
2021-09-07 08:50:13,165 INFO MainThread:86745 [wandb_run.py:_redirect():1536] Redirects installed.
|
| 22 |
+
2021-09-07 08:50:13,165 INFO MainThread:86745 [wandb_init.py:init():565] run started, returning control to user process
|
| 23 |
+
2021-09-07 09:09:24,673 INFO MainThread:86745 [wandb_run.py:_atexit_cleanup():1571] got exitcode: 255
|
| 24 |
+
2021-09-07 09:09:24,673 INFO MainThread:86745 [wandb_run.py:_restore():1543] restore
|
wandb/run-20210907_085010-xa9s4yt2/run-xa9s4yt2.wandb
ADDED
|
Binary file (89.8 kB). View file
|
|
|
wandb/run-20210907_094005-1jmcrt7a/files/config.yaml
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
wandb_version: 1
|
| 2 |
+
|
| 3 |
+
_wandb:
|
| 4 |
+
desc: null
|
| 5 |
+
value:
|
| 6 |
+
cli_version: 0.12.1
|
| 7 |
+
framework: huggingface
|
| 8 |
+
huggingface_version: 4.10.0.dev0
|
| 9 |
+
is_jupyter_run: false
|
| 10 |
+
is_kaggle_kernel: false
|
| 11 |
+
python_version: 3.6.9
|
| 12 |
+
start_time: 1631007605
|
| 13 |
+
t:
|
| 14 |
+
1:
|
| 15 |
+
- 1
|
| 16 |
+
- 3
|
| 17 |
+
- 5
|
| 18 |
+
- 11
|
| 19 |
+
- 12
|
| 20 |
+
4: 3.6.9
|
| 21 |
+
5: 0.12.1
|
| 22 |
+
6: 4.10.0.dev0
|
| 23 |
+
8:
|
| 24 |
+
- 5
|
wandb/run-20210907_094005-1jmcrt7a/files/output.log
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
09/07/2021 09:40:09 - WARNING - datasets.builder - Using custom data configuration clean-5e73ba74b650b050
|
| 2 |
+
09/07/2021 09:40:09 - WARNING - datasets.builder - Reusing dataset librispeech_asr (/home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d)
|
| 3 |
+
0%| | 0/135 [00:00<?, ?ex/s]
|
| 4 |
+
09/07/2021 09:40:10 - WARNING - datasets.builder - Using custom data configuration clean-5e73ba74b650b050
|
| 5 |
+
09/07/2021 09:40:10 - WARNING - datasets.builder - Reusing dataset librispeech_asr (/home/patrick/.cache/huggingface/datasets/librispeech_asr/clean-5e73ba74b650b050/2.1.0/4a3512d5532dc4a75a0072aace5d2f46280550843efadb78ee570c340d0fcb9d)
|
| 6 |
+
09/07/2021 09:40:11 - WARNING - datasets.builder - Using custom data configuration clean-5e73ba74b650b050
|
| 7 |
+
100%|██████████████████████████████████████████████████████████████████| 135/135 [00:00<00:00, 212.58ex/s]
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
100%|█████████████████████████████████████████████████████████████████| 2568/2568 [00:25<00:00, 99.82ex/s]
|
| 19 |
+
100%|███████████████████████████████████████████████████████████████████████| 1/1 [00:03<00:00, 3.99s/ba]
|
| 20 |
+
|
| 21 |
+
67%|███████████████████████████████████████████████▎ | 2/3 [01:34<00:47, 47.21s/ba]
|
| 22 |
+
Exception in thread Thread-3:
|
| 23 |
+
Traceback (most recent call last):
|
| 24 |
+
File "/usr/lib/python3.6/threading.py", line 916, in _bootstrap_inner
|
| 25 |
+
self.run()
|
| 26 |
+
File "/usr/lib/python3.6/threading.py", line 864, in run
|
| 27 |
+
self._target(*self._args, **self._kwargs)
|
| 28 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/wandb/sdk/wandb_run.py", line 203, in check_status
|
| 29 |
+
status_response = self._interface.communicate_stop_status()
|
| 30 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/wandb/sdk/interface/interface.py", line 737, in communicate_stop_status
|
| 31 |
+
resp = self._communicate(req, timeout=timeout, local=True)
|
| 32 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/wandb/sdk/interface/interface.py", line 539, in _communicate
|
| 33 |
+
return self._communicate_async(rec, local=local).get(timeout=timeout)
|
| 34 |
+
File "/home/patrick/hf_flax_tpu/lib/python3.6/site-packages/wandb/sdk/interface/interface.py", line 544, in _communicate_async
|
| 35 |
+
raise Exception("The wandb backend process has shutdown")
|
| 36 |
+
Exception: The wandb backend process has shutdown
|
| 37 |
+
Traceback (most recent call last):
|
| 38 |
+
File "./run_wav2vec2_pretrain_flax.py", line 677, in <module>
|
| 39 |
+
main()
|
| 40 |
+
File "./run_wav2vec2_pretrain_flax.py", line 365, in main
|
| 41 |
+
vectorized_datasets = vectorized_datasets.filter(lambda x: len(x["speech"]) > min_length)
|
| 42 |
+
File "/home/patrick/python_bin/datasets/dataset_dict.py", line 554, in filter
|
| 43 |
+
for k, dataset in self.items()
|
| 44 |
+
File "/home/patrick/python_bin/datasets/dataset_dict.py", line 554, in <dictcomp>
|
| 45 |
+
for k, dataset in self.items()
|
| 46 |
+
File "/home/patrick/python_bin/datasets/arrow_dataset.py", line 185, in wrapper
|
| 47 |
+
out: Union["Dataset", "DatasetDict"] = func(self, *args, **kwargs)
|
| 48 |
+
File "/home/patrick/python_bin/datasets/fingerprint.py", line 397, in wrapper
|
| 49 |
+
out = func(self, *args, **kwargs)
|
| 50 |
+
File "/home/patrick/python_bin/datasets/arrow_dataset.py", line 2157, in filter
|
| 51 |
+
new_fingerprint=new_fingerprint,
|
| 52 |
+
File "/home/patrick/python_bin/datasets/arrow_dataset.py", line 1673, in map
|
| 53 |
+
desc=desc,
|
| 54 |
+
File "/home/patrick/python_bin/datasets/arrow_dataset.py", line 185, in wrapper
|
| 55 |
+
out: Union["Dataset", "DatasetDict"] = func(self, *args, **kwargs)
|
| 56 |
+
File "/home/patrick/python_bin/datasets/fingerprint.py", line 397, in wrapper
|
| 57 |
+
out = func(self, *args, **kwargs)
|
| 58 |
+
File "/home/patrick/python_bin/datasets/arrow_dataset.py", line 2001, in _map_single
|
| 59 |
+
batch = input_dataset[i : i + batch_size]
|
| 60 |
+
File "/home/patrick/python_bin/datasets/arrow_dataset.py", line 1522, in __getitem__
|
| 61 |
+
format_kwargs=self._format_kwargs,
|
| 62 |
+
File "/home/patrick/python_bin/datasets/arrow_dataset.py", line 1511, in _getitem
|
| 63 |
+
pa_subtable, key, formatter=formatter, format_columns=format_columns, output_all_columns=output_all_columns
|
| 64 |
+
File "/home/patrick/python_bin/datasets/formatting/formatting.py", line 414, in format_table
|
| 65 |
+
return formatter(pa_table, query_type=query_type)
|
| 66 |
+
File "/home/patrick/python_bin/datasets/formatting/formatting.py", line 198, in __call__
|
| 67 |
+
return self.format_batch(pa_table)
|
| 68 |
+
File "/home/patrick/python_bin/datasets/formatting/formatting.py", line 229, in format_batch
|
| 69 |
+
return self.python_arrow_extractor().extract_batch(pa_table)
|
| 70 |
+
File "/home/patrick/python_bin/datasets/formatting/formatting.py", line 140, in extract_batch
|
| 71 |
+
return pa_table.to_pydict()
|
| 72 |
+
KeyboardInterrupt
|
wandb/run-20210907_094005-1jmcrt7a/files/requirements.txt
ADDED
|
@@ -0,0 +1,293 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
absl-py==0.12.0
|
| 2 |
+
aiobotocore==1.2.2
|
| 3 |
+
aiohttp==3.7.4.post0
|
| 4 |
+
aioitertools==0.7.1
|
| 5 |
+
alabaster==0.7.12
|
| 6 |
+
antlr4-python3-runtime==4.8
|
| 7 |
+
apache-beam==2.28.0
|
| 8 |
+
apipkg==1.5
|
| 9 |
+
appdirs==1.4.4
|
| 10 |
+
argcomplete==1.12.3
|
| 11 |
+
arrow==1.0.3
|
| 12 |
+
astunparse==1.6.3
|
| 13 |
+
async-timeout==3.0.1
|
| 14 |
+
attrs==20.3.0
|
| 15 |
+
audioread==2.1.9
|
| 16 |
+
avro-python3==1.9.2.1
|
| 17 |
+
aws-sam-translator==1.35.0
|
| 18 |
+
aws-xray-sdk==2.7.0
|
| 19 |
+
babel==2.9.0
|
| 20 |
+
backcall==0.2.0
|
| 21 |
+
bcj-cffi==0.5.1
|
| 22 |
+
beautifulsoup4==4.9.3
|
| 23 |
+
bert-score==0.3.9
|
| 24 |
+
binaryornot==0.4.4
|
| 25 |
+
black==21.4b0
|
| 26 |
+
boto3==1.16.43
|
| 27 |
+
boto==2.49.0
|
| 28 |
+
botocore==1.19.52
|
| 29 |
+
bs4==0.0.1
|
| 30 |
+
cachetools==4.2.1
|
| 31 |
+
certifi==2020.12.5
|
| 32 |
+
cffi==1.14.5
|
| 33 |
+
cfn-lint==0.48.3
|
| 34 |
+
chardet==4.0.0
|
| 35 |
+
chex==0.0.6
|
| 36 |
+
click==7.1.2
|
| 37 |
+
cloud-tpu-client==0.10
|
| 38 |
+
cloud-tpu-profiler==2.4.0
|
| 39 |
+
commonmark==0.9.1
|
| 40 |
+
configparser==5.0.2
|
| 41 |
+
conllu==4.4
|
| 42 |
+
cookiecutter==1.7.2
|
| 43 |
+
crcmod==1.7
|
| 44 |
+
cryptography==3.4.7
|
| 45 |
+
cycler==0.10.0
|
| 46 |
+
cython==0.29.23
|
| 47 |
+
dataclasses==0.8
|
| 48 |
+
datasets==1.9.0
|
| 49 |
+
decorator==4.4.2
|
| 50 |
+
dill==0.3.1.1
|
| 51 |
+
dm-tree==0.1.6
|
| 52 |
+
docker-pycreds==0.4.0
|
| 53 |
+
docker==5.0.0
|
| 54 |
+
docopt==0.6.2
|
| 55 |
+
docutils==0.16
|
| 56 |
+
ecdsa==0.14.1
|
| 57 |
+
elasticsearch==7.12.0
|
| 58 |
+
entrypoints==0.3
|
| 59 |
+
et-xmlfile==1.1.0
|
| 60 |
+
execnet==1.8.0
|
| 61 |
+
fairseq==1.0.0a0+9825786
|
| 62 |
+
faiss-cpu==1.7.0
|
| 63 |
+
fastavro==1.4.0
|
| 64 |
+
fastbpe==0.1.0
|
| 65 |
+
fasteners==0.16
|
| 66 |
+
filelock==3.0.12
|
| 67 |
+
fire==0.4.0
|
| 68 |
+
flake8==3.7.9
|
| 69 |
+
flask-cors==3.0.10
|
| 70 |
+
flask==1.1.2
|
| 71 |
+
flatbuffers==1.12
|
| 72 |
+
flax==0.3.4
|
| 73 |
+
fsspec==2021.6.1
|
| 74 |
+
fugashi==1.1.0
|
| 75 |
+
future==0.18.2
|
| 76 |
+
gast==0.3.3
|
| 77 |
+
gcs-oauth2-boto-plugin==2.7
|
| 78 |
+
gitdb==4.0.7
|
| 79 |
+
gitpython==3.1.18
|
| 80 |
+
google-api-core==1.26.3
|
| 81 |
+
google-api-python-client==1.8.0
|
| 82 |
+
google-apitools==0.5.32
|
| 83 |
+
google-auth-httplib2==0.1.0
|
| 84 |
+
google-auth-oauthlib==0.4.4
|
| 85 |
+
google-auth==1.30.0
|
| 86 |
+
google-pasta==0.2.0
|
| 87 |
+
google-reauth==0.1.1
|
| 88 |
+
googleapis-common-protos==1.53.0
|
| 89 |
+
grpcio==1.32.0
|
| 90 |
+
gsutil==4.62
|
| 91 |
+
gviz-api==1.9.0
|
| 92 |
+
h5py==2.10.0
|
| 93 |
+
hdfs==2.6.0
|
| 94 |
+
httplib2==0.19.1
|
| 95 |
+
huggingface-hub==0.0.8
|
| 96 |
+
hydra-core==1.0.7
|
| 97 |
+
idna-ssl==1.1.0
|
| 98 |
+
idna==2.10
|
| 99 |
+
imagesize==1.2.0
|
| 100 |
+
importlib-metadata==4.0.1
|
| 101 |
+
importlib-resources==3.3.1
|
| 102 |
+
iniconfig==1.1.1
|
| 103 |
+
intel-openmp==2021.2.0
|
| 104 |
+
ipadic==1.0.0
|
| 105 |
+
ipdb==0.13.7
|
| 106 |
+
ipython-genutils==0.2.0
|
| 107 |
+
ipython==7.16.1
|
| 108 |
+
isort==5.8.0
|
| 109 |
+
itsdangerous==1.1.0
|
| 110 |
+
jax==0.2.17
|
| 111 |
+
jaxlib==0.1.68
|
| 112 |
+
jedi==0.17.2
|
| 113 |
+
jinja2-time==0.2.0
|
| 114 |
+
jinja2==2.11.3
|
| 115 |
+
jiwer==2.2.0
|
| 116 |
+
jmespath==0.10.0
|
| 117 |
+
joblib==1.0.1
|
| 118 |
+
jsondiff==1.3.0
|
| 119 |
+
jsonpatch==1.32
|
| 120 |
+
jsonpointer==2.1
|
| 121 |
+
jsonschema==3.2.0
|
| 122 |
+
junit-xml==1.9
|
| 123 |
+
keras-preprocessing==1.1.2
|
| 124 |
+
keras2onnx==1.7.0
|
| 125 |
+
kiwisolver==1.3.1
|
| 126 |
+
langdetect==1.0.8
|
| 127 |
+
librosa==0.8.1
|
| 128 |
+
libtpu-nightly==0.1.dev20210615
|
| 129 |
+
llvmlite==0.36.0
|
| 130 |
+
lxml==4.6.3
|
| 131 |
+
markdown==3.3.4
|
| 132 |
+
markupsafe==1.1.1
|
| 133 |
+
matplotlib==3.3.4
|
| 134 |
+
mccabe==0.6.1
|
| 135 |
+
mkl==2021.2.0
|
| 136 |
+
mock==2.0.0
|
| 137 |
+
monotonic==1.6
|
| 138 |
+
more-itertools==8.7.0
|
| 139 |
+
moto==2.0.4
|
| 140 |
+
msgpack==1.0.2
|
| 141 |
+
multidict==5.1.0
|
| 142 |
+
multiprocess==0.70.9
|
| 143 |
+
multivolumefile==0.2.2
|
| 144 |
+
mwparserfromhell==0.6
|
| 145 |
+
mypy-extensions==0.4.3
|
| 146 |
+
networkx==2.5.1
|
| 147 |
+
nltk==3.6.2
|
| 148 |
+
numba==0.53.1
|
| 149 |
+
numpy==1.19.5
|
| 150 |
+
oauth2client==4.1.3
|
| 151 |
+
oauthlib==3.1.0
|
| 152 |
+
omegaconf==2.0.6
|
| 153 |
+
onnx==1.9.0
|
| 154 |
+
onnxconverter-common==1.8.1
|
| 155 |
+
openpyxl==3.0.7
|
| 156 |
+
opt-einsum==3.3.0
|
| 157 |
+
optax==0.0.9
|
| 158 |
+
packaging==20.9
|
| 159 |
+
pandas==1.1.5
|
| 160 |
+
parameterized==0.8.1
|
| 161 |
+
parso==0.7.1
|
| 162 |
+
pathspec==0.8.1
|
| 163 |
+
pathtools==0.1.2
|
| 164 |
+
pbr==5.6.0
|
| 165 |
+
pexpect==4.8.0
|
| 166 |
+
pickleshare==0.7.5
|
| 167 |
+
pillow==8.2.0
|
| 168 |
+
pip==21.1
|
| 169 |
+
pkg-resources==0.0.0
|
| 170 |
+
plac==1.3.3
|
| 171 |
+
pluggy==0.13.1
|
| 172 |
+
pooch==1.4.0
|
| 173 |
+
portalocker==2.0.0
|
| 174 |
+
poyo==0.5.0
|
| 175 |
+
ppmd-cffi==0.4.2
|
| 176 |
+
promise==2.3
|
| 177 |
+
prompt-toolkit==3.0.18
|
| 178 |
+
protobuf==3.15.8
|
| 179 |
+
psutil==5.8.0
|
| 180 |
+
ptyprocess==0.7.0
|
| 181 |
+
py7zr==0.15.1
|
| 182 |
+
py==1.10.0
|
| 183 |
+
pyarrow==2.0.0
|
| 184 |
+
pyasn1-modules==0.2.8
|
| 185 |
+
pyasn1==0.4.8
|
| 186 |
+
pycodestyle==2.5.0
|
| 187 |
+
pycparser==2.20
|
| 188 |
+
pycryptodome==3.10.1
|
| 189 |
+
pydot==1.4.2
|
| 190 |
+
pyflakes==2.1.1
|
| 191 |
+
pygments==2.8.1
|
| 192 |
+
pymongo==3.11.3
|
| 193 |
+
pyopenssl==20.0.1
|
| 194 |
+
pyparsing==2.4.7
|
| 195 |
+
pyrsistent==0.17.3
|
| 196 |
+
pytest-forked==1.3.0
|
| 197 |
+
pytest-sugar==0.9.4
|
| 198 |
+
pytest-xdist==2.2.1
|
| 199 |
+
pytest==6.2.3
|
| 200 |
+
python-dateutil==2.8.1
|
| 201 |
+
python-jose==3.2.0
|
| 202 |
+
python-levenshtein==0.12.2
|
| 203 |
+
python-slugify==4.0.1
|
| 204 |
+
pytorch-lightning==1.1.2
|
| 205 |
+
pytorch-nlp==0.5.0
|
| 206 |
+
pytz==2021.1
|
| 207 |
+
pyu2f==0.1.5
|
| 208 |
+
pyyaml==5.4.1
|
| 209 |
+
pyzstd==0.14.4
|
| 210 |
+
rarfile==4.0
|
| 211 |
+
recommonmark==0.7.1
|
| 212 |
+
regex==2021.4.4
|
| 213 |
+
requests-file==1.5.1
|
| 214 |
+
requests-oauthlib==1.3.0
|
| 215 |
+
requests==2.25.1
|
| 216 |
+
resampy==0.2.2
|
| 217 |
+
responses==0.13.2
|
| 218 |
+
retry-decorator==1.1.1
|
| 219 |
+
rouge-score==0.0.4
|
| 220 |
+
rsa==4.7.2
|
| 221 |
+
s3fs==0.4.2
|
| 222 |
+
s3transfer==0.3.7
|
| 223 |
+
sacrebleu==1.5.1
|
| 224 |
+
sacremoses==0.0.45
|
| 225 |
+
scikit-learn==0.24.1
|
| 226 |
+
scipy==1.5.4
|
| 227 |
+
sentencepiece==0.1.91
|
| 228 |
+
sentry-sdk==1.3.1
|
| 229 |
+
seqeval==1.2.2
|
| 230 |
+
setuptools==56.0.0
|
| 231 |
+
shortuuid==1.0.1
|
| 232 |
+
six==1.15.0
|
| 233 |
+
sklearn==0.0
|
| 234 |
+
smmap==4.0.0
|
| 235 |
+
snowballstemmer==2.1.0
|
| 236 |
+
soundfile==0.10.3.post1
|
| 237 |
+
soupsieve==2.2.1
|
| 238 |
+
sphinx-copybutton==0.3.1
|
| 239 |
+
sphinx-markdown-tables==0.0.15
|
| 240 |
+
sphinx-rtd-theme==0.4.3
|
| 241 |
+
sphinx==3.2.1
|
| 242 |
+
sphinxcontrib-applehelp==1.0.2
|
| 243 |
+
sphinxcontrib-devhelp==1.0.2
|
| 244 |
+
sphinxcontrib-htmlhelp==1.0.3
|
| 245 |
+
sphinxcontrib-jsmath==1.0.1
|
| 246 |
+
sphinxcontrib-qthelp==1.0.3
|
| 247 |
+
sphinxcontrib-serializinghtml==1.1.4
|
| 248 |
+
sphinxext-opengraph==0.4.1
|
| 249 |
+
sshpubkeys==3.3.1
|
| 250 |
+
style==1.1.0
|
| 251 |
+
subprocess32==3.5.4
|
| 252 |
+
tbb==2021.2.0
|
| 253 |
+
tbp-nightly==2.5.0a20210511
|
| 254 |
+
tensorboard-data-server==0.6.0
|
| 255 |
+
tensorboard-plugin-wit==1.8.0
|
| 256 |
+
tensorboard==2.5.0
|
| 257 |
+
tensorflow-estimator==2.4.0
|
| 258 |
+
tensorflow==2.4.1
|
| 259 |
+
termcolor==1.1.0
|
| 260 |
+
text-unidecode==1.3
|
| 261 |
+
texttable==1.6.3
|
| 262 |
+
threadpoolctl==2.1.0
|
| 263 |
+
timeout-decorator==0.5.0
|
| 264 |
+
tldextract==3.1.0
|
| 265 |
+
tokenizers==0.10.2
|
| 266 |
+
toml==0.10.2
|
| 267 |
+
toolz==0.11.1
|
| 268 |
+
torch==1.9.0
|
| 269 |
+
torchaudio==0.8.1
|
| 270 |
+
torchvision==0.7.0a0+a6073f0
|
| 271 |
+
tqdm==4.49.0
|
| 272 |
+
traitlets==4.3.3
|
| 273 |
+
transformers==4.9.0.dev0
|
| 274 |
+
typed-ast==1.4.3
|
| 275 |
+
typing-extensions==3.7.4.3
|
| 276 |
+
unidic-lite==1.0.8
|
| 277 |
+
unidic==1.0.3
|
| 278 |
+
update==0.0.1
|
| 279 |
+
uritemplate==3.0.1
|
| 280 |
+
urllib3==1.26.4
|
| 281 |
+
wandb==0.12.1
|
| 282 |
+
wasabi==0.8.2
|
| 283 |
+
wcwidth==0.2.5
|
| 284 |
+
websocket-client==0.58.0
|
| 285 |
+
werkzeug==1.0.1
|
| 286 |
+
wget==3.2
|
| 287 |
+
wheel==0.36.2
|
| 288 |
+
wrapt==1.12.1
|
| 289 |
+
xmltodict==0.12.0
|
| 290 |
+
xxhash==2.0.2
|
| 291 |
+
yarl==1.6.3
|
| 292 |
+
zipp==3.4.1
|
| 293 |
+
zstandard==0.15.2
|
wandb/run-20210907_094005-1jmcrt7a/files/wandb-metadata.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"os": "Linux-5.4.0-1042-gcp-x86_64-with-Ubuntu-18.04-bionic",
|
| 3 |
+
"python": "3.6.9",
|
| 4 |
+
"heartbeatAt": "2021-09-07T09:40:08.202022",
|
| 5 |
+
"startedAt": "2021-09-07T09:40:05.605187",
|
| 6 |
+
"docker": null,
|
| 7 |
+
"cpu_count": 96,
|
| 8 |
+
"cuda": null,
|
| 9 |
+
"args": [
|
| 10 |
+
"--output_dir=./",
|
| 11 |
+
"--num_train_epochs=1000",
|
| 12 |
+
"--warmup_steps=32000",
|
| 13 |
+
"--dataset_name=patrickvonplaten/librispeech_local",
|
| 14 |
+
"--dataset_config_name=clean",
|
| 15 |
+
"--train_split_name=train",
|
| 16 |
+
"--per_device_train_batch_size=8",
|
| 17 |
+
"--per_device_eval_batch_size=8",
|
| 18 |
+
"--learning_rate=0.0005",
|
| 19 |
+
"--weight_decay=0.01",
|
| 20 |
+
"--model_name_or_path=./",
|
| 21 |
+
"--logging_steps=1",
|
| 22 |
+
"--max_duration_in_seconds=16.0",
|
| 23 |
+
"--adam_beta1=0.9",
|
| 24 |
+
"--adam_beta2=0.98",
|
| 25 |
+
"--adam_epsilon=1e-06"
|
| 26 |
+
],
|
| 27 |
+
"state": "running",
|
| 28 |
+
"program": "./run_wav2vec2_pretrain_flax.py",
|
| 29 |
+
"codePath": "run_wav2vec2_pretrain_flax.py",
|
| 30 |
+
"git": {
|
| 31 |
+
"remote": "https://huggingface.co/patrickvonplaten/wav2vec2_libri",
|
| 32 |
+
"commit": "365d5efbbfdc7c14d0dfcf152e1a1f1de74aa15d"
|
| 33 |
+
},
|
| 34 |
+
"email": "patrick@huggingface.co",
|
| 35 |
+
"root": "/home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri",
|
| 36 |
+
"host": "t1v-n-71556209-w-0",
|
| 37 |
+
"username": "patrick",
|
| 38 |
+
"executable": "/home/patrick/hf_flax_tpu/bin/python3"
|
| 39 |
+
}
|
wandb/run-20210907_094005-1jmcrt7a/files/wandb-summary.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{}
|
wandb/run-20210907_094005-1jmcrt7a/logs/debug-internal.log
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
2021-09-07 09:40:06,294 INFO MainThread:92124 [internal.py:wandb_internal():89] W&B internal server running at pid: 92124, started at: 2021-09-07 09:40:06.293950
|
| 2 |
+
2021-09-07 09:40:06,296 DEBUG HandlerThread:92124 [handler.py:handle_request():126] handle_request: check_version
|
| 3 |
+
2021-09-07 09:40:06,296 INFO WriterThread:92124 [datastore.py:open_for_write():77] open: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/run-1jmcrt7a.wandb
|
| 4 |
+
2021-09-07 09:40:06,297 DEBUG SenderThread:92124 [sender.py:send():182] send: header
|
| 5 |
+
2021-09-07 09:40:06,298 DEBUG SenderThread:92124 [sender.py:send_request():196] send_request: check_version
|
| 6 |
+
2021-09-07 09:40:06,337 DEBUG SenderThread:92124 [sender.py:send():182] send: run
|
| 7 |
+
2021-09-07 09:40:06,520 INFO SenderThread:92124 [dir_watcher.py:__init__():169] watching files in: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files
|
| 8 |
+
2021-09-07 09:40:06,521 INFO SenderThread:92124 [sender.py:_start_run_threads():743] run started: 1jmcrt7a with start time 1631007605
|
| 9 |
+
2021-09-07 09:40:06,521 DEBUG SenderThread:92124 [sender.py:send():182] send: summary
|
| 10 |
+
2021-09-07 09:40:06,521 INFO SenderThread:92124 [sender.py:_save_file():873] saving file wandb-summary.json with policy end
|
| 11 |
+
2021-09-07 09:40:06,522 DEBUG HandlerThread:92124 [handler.py:handle_request():126] handle_request: run_start
|
| 12 |
+
2021-09-07 09:40:07,526 INFO Thread-8 :92124 [dir_watcher.py:_on_file_created():217] file/dir created: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/wandb-summary.json
|
| 13 |
+
2021-09-07 09:40:08,201 DEBUG HandlerThread:92124 [meta.py:__init__():40] meta init
|
| 14 |
+
2021-09-07 09:40:08,201 DEBUG HandlerThread:92124 [meta.py:__init__():54] meta init done
|
| 15 |
+
2021-09-07 09:40:08,201 DEBUG HandlerThread:92124 [meta.py:probe():211] probe
|
| 16 |
+
2021-09-07 09:40:08,203 DEBUG HandlerThread:92124 [meta.py:_setup_git():201] setup git
|
| 17 |
+
2021-09-07 09:40:08,228 DEBUG HandlerThread:92124 [meta.py:_setup_git():208] setup git done
|
| 18 |
+
2021-09-07 09:40:08,228 DEBUG HandlerThread:92124 [meta.py:_save_pip():58] save pip
|
| 19 |
+
2021-09-07 09:40:08,229 DEBUG HandlerThread:92124 [meta.py:_save_pip():72] save pip done
|
| 20 |
+
2021-09-07 09:40:08,229 DEBUG HandlerThread:92124 [meta.py:probe():249] probe done
|
| 21 |
+
2021-09-07 09:40:08,232 DEBUG SenderThread:92124 [sender.py:send():182] send: files
|
| 22 |
+
2021-09-07 09:40:08,232 INFO SenderThread:92124 [sender.py:_save_file():873] saving file wandb-metadata.json with policy now
|
| 23 |
+
2021-09-07 09:40:08,239 DEBUG HandlerThread:92124 [handler.py:handle_request():126] handle_request: stop_status
|
| 24 |
+
2021-09-07 09:40:08,239 DEBUG SenderThread:92124 [sender.py:send_request():196] send_request: stop_status
|
| 25 |
+
2021-09-07 09:40:08,525 INFO Thread-8 :92124 [dir_watcher.py:_on_file_created():217] file/dir created: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/requirements.txt
|
| 26 |
+
2021-09-07 09:40:08,525 INFO Thread-8 :92124 [dir_watcher.py:_on_file_created():217] file/dir created: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/wandb-metadata.json
|
| 27 |
+
2021-09-07 09:40:08,526 INFO Thread-8 :92124 [dir_watcher.py:_on_file_created():217] file/dir created: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/output.log
|
| 28 |
+
2021-09-07 09:40:08,778 INFO Thread-11 :92124 [upload_job.py:push():137] Uploaded file /tmp/tmpcz_z3tx7wandb/3v46qxnn-wandb-metadata.json
|
| 29 |
+
2021-09-07 09:40:10,525 INFO Thread-8 :92124 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/output.log
|
| 30 |
+
2021-09-07 09:40:12,526 INFO Thread-8 :92124 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/output.log
|
| 31 |
+
2021-09-07 09:40:14,527 INFO Thread-8 :92124 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/output.log
|
| 32 |
+
2021-09-07 09:40:16,528 INFO Thread-8 :92124 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/output.log
|
| 33 |
+
2021-09-07 09:40:18,529 INFO Thread-8 :92124 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/output.log
|
| 34 |
+
2021-09-07 09:40:23,839 DEBUG HandlerThread:92124 [handler.py:handle_request():126] handle_request: stop_status
|
| 35 |
+
2021-09-07 09:40:23,839 DEBUG SenderThread:92124 [sender.py:send_request():196] send_request: stop_status
|
| 36 |
+
2021-09-07 09:40:24,531 INFO Thread-8 :92124 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/output.log
|
| 37 |
+
2021-09-07 09:40:28,532 INFO Thread-8 :92124 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/output.log
|
| 38 |
+
2021-09-07 09:40:30,533 INFO Thread-8 :92124 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/output.log
|
| 39 |
+
2021-09-07 09:40:34,535 INFO Thread-8 :92124 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/output.log
|
| 40 |
+
2021-09-07 09:40:36,287 DEBUG SenderThread:92124 [sender.py:send():182] send: stats
|
| 41 |
+
2021-09-07 09:40:36,536 INFO Thread-8 :92124 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/output.log
|
| 42 |
+
2021-09-07 09:40:38,537 INFO Thread-8 :92124 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/output.log
|
| 43 |
+
2021-09-07 09:40:38,969 DEBUG HandlerThread:92124 [handler.py:handle_request():126] handle_request: stop_status
|
| 44 |
+
2021-09-07 09:40:38,970 DEBUG SenderThread:92124 [sender.py:send_request():196] send_request: stop_status
|
| 45 |
+
2021-09-07 09:40:41,538 INFO Thread-8 :92124 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/output.log
|
| 46 |
+
2021-09-07 09:40:43,539 INFO Thread-8 :92124 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/output.log
|
| 47 |
+
2021-09-07 09:40:54,103 DEBUG HandlerThread:92124 [handler.py:handle_request():126] handle_request: stop_status
|
| 48 |
+
2021-09-07 09:40:54,103 DEBUG SenderThread:92124 [sender.py:send_request():196] send_request: stop_status
|
| 49 |
+
2021-09-07 09:41:06,360 DEBUG SenderThread:92124 [sender.py:send():182] send: stats
|
| 50 |
+
2021-09-07 09:41:36,431 DEBUG SenderThread:92124 [sender.py:send():182] send: stats
|
| 51 |
+
2021-09-07 09:41:41,586 DEBUG HandlerThread:92124 [handler.py:handle_request():126] handle_request: stop_status
|
| 52 |
+
2021-09-07 09:41:41,587 DEBUG SenderThread:92124 [sender.py:send_request():196] send_request: stop_status
|
| 53 |
+
2021-09-07 09:41:42,558 INFO Thread-8 :92124 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/output.log
|
| 54 |
+
2021-09-07 09:41:45,559 INFO Thread-8 :92124 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/output.log
|
| 55 |
+
2021-09-07 09:42:06,506 DEBUG SenderThread:92124 [sender.py:send():182] send: stats
|
| 56 |
+
2021-09-07 09:42:20,044 DEBUG HandlerThread:92124 [handler.py:handle_request():126] handle_request: stop_status
|
| 57 |
+
2021-09-07 09:42:20,044 DEBUG SenderThread:92124 [sender.py:send_request():196] send_request: stop_status
|
| 58 |
+
2021-09-07 09:42:23,572 INFO Thread-8 :92124 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/files/output.log
|
| 59 |
+
2021-09-07 09:42:34,027 WARNING MainThread:92124 [internal.py:wandb_internal():145] Internal process interrupt: 1
|
| 60 |
+
2021-09-07 09:42:34,174 WARNING MainThread:92124 [internal.py:wandb_internal():145] Internal process interrupt: 2
|
| 61 |
+
2021-09-07 09:42:34,174 ERROR MainThread:92124 [internal.py:wandb_internal():148] Internal process interrupted.
|
| 62 |
+
2021-09-07 09:42:34,486 INFO MainThread:92124 [internal.py:handle_exit():76] Internal process exited
|
wandb/run-20210907_094005-1jmcrt7a/logs/debug.log
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
2021-09-07 09:40:05,606 INFO MainThread:91950 [wandb_setup.py:_flush():69] setting env: {}
|
| 2 |
+
2021-09-07 09:40:05,606 INFO MainThread:91950 [wandb_setup.py:_flush():69] setting login settings: {}
|
| 3 |
+
2021-09-07 09:40:05,606 INFO MainThread:91950 [wandb_init.py:_log_setup():342] Logging user logs to /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/logs/debug.log
|
| 4 |
+
2021-09-07 09:40:05,606 INFO MainThread:91950 [wandb_init.py:_log_setup():343] Logging internal logs to /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094005-1jmcrt7a/logs/debug-internal.log
|
| 5 |
+
2021-09-07 09:40:05,606 INFO MainThread:91950 [wandb_init.py:init():375] calling init triggers
|
| 6 |
+
2021-09-07 09:40:05,606 INFO MainThread:91950 [wandb_init.py:init():382] wandb.init called with sweep_config: {}
|
| 7 |
+
config: {}
|
| 8 |
+
2021-09-07 09:40:05,606 INFO MainThread:91950 [wandb_init.py:init():424] starting backend
|
| 9 |
+
2021-09-07 09:40:05,606 INFO MainThread:91950 [backend.py:_multiprocessing_setup():72] multiprocessing start_methods=fork,spawn,forkserver, using: spawn
|
| 10 |
+
2021-09-07 09:40:05,618 INFO MainThread:91950 [backend.py:ensure_launched():135] starting backend process...
|
| 11 |
+
2021-09-07 09:40:05,625 INFO MainThread:91950 [backend.py:ensure_launched():140] started backend process with pid: 92124
|
| 12 |
+
2021-09-07 09:40:05,627 INFO MainThread:91950 [wandb_init.py:init():429] backend started and connected
|
| 13 |
+
2021-09-07 09:40:05,629 INFO MainThread:91950 [wandb_init.py:init():477] updated telemetry
|
| 14 |
+
2021-09-07 09:40:05,629 INFO MainThread:91950 [wandb_init.py:init():500] communicating current version
|
| 15 |
+
2021-09-07 09:40:06,336 INFO MainThread:91950 [wandb_init.py:init():505] got version response
|
| 16 |
+
2021-09-07 09:40:06,336 INFO MainThread:91950 [wandb_init.py:init():513] communicating run to backend with 30 second timeout
|
| 17 |
+
2021-09-07 09:40:06,521 INFO MainThread:91950 [wandb_init.py:init():540] starting run threads in backend
|
| 18 |
+
2021-09-07 09:40:08,236 INFO MainThread:91950 [wandb_run.py:_console_start():1601] atexit reg
|
| 19 |
+
2021-09-07 09:40:08,236 INFO MainThread:91950 [wandb_run.py:_redirect():1475] redirect: SettingsConsole.REDIRECT
|
| 20 |
+
2021-09-07 09:40:08,238 INFO MainThread:91950 [wandb_run.py:_redirect():1480] Redirecting console.
|
| 21 |
+
2021-09-07 09:40:08,240 INFO MainThread:91950 [wandb_run.py:_redirect():1536] Redirects installed.
|
| 22 |
+
2021-09-07 09:40:08,241 INFO MainThread:91950 [wandb_init.py:init():565] run started, returning control to user process
|
| 23 |
+
2021-09-07 09:42:49,330 INFO MainThread:91950 [wandb_run.py:_atexit_cleanup():1571] got exitcode: 255
|
| 24 |
+
2021-09-07 09:42:49,333 INFO MainThread:91950 [wandb_run.py:_restore():1543] restore
|
| 25 |
+
2021-09-07 09:42:52,108 INFO MainThread:91950 [wandb_run.py:_restore():1543] restore
|
wandb/run-20210907_094005-1jmcrt7a/run-1jmcrt7a.wandb
ADDED
|
Binary file (3.99 kB). View file
|
|
|
wandb/run-20210907_094306-1gii9ass/files/config.yaml
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
wandb_version: 1
|
| 2 |
+
|
| 3 |
+
_wandb:
|
| 4 |
+
desc: null
|
| 5 |
+
value:
|
| 6 |
+
cli_version: 0.12.1
|
| 7 |
+
framework: huggingface
|
| 8 |
+
huggingface_version: 4.10.0.dev0
|
| 9 |
+
is_jupyter_run: false
|
| 10 |
+
is_kaggle_kernel: false
|
| 11 |
+
python_version: 3.6.9
|
| 12 |
+
start_time: 1631007786
|
| 13 |
+
t:
|
| 14 |
+
1:
|
| 15 |
+
- 1
|
| 16 |
+
- 3
|
| 17 |
+
- 5
|
| 18 |
+
- 11
|
| 19 |
+
- 12
|
| 20 |
+
4: 3.6.9
|
| 21 |
+
5: 0.12.1
|
| 22 |
+
6: 4.10.0.dev0
|
| 23 |
+
8:
|
| 24 |
+
- 5
|
wandb/run-20210907_094306-1gii9ass/files/output.log
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
09/07/2021 09:43:10 - WARNING - datasets.builder - Using custom data configuration clean-5e73ba74b650b050
|
wandb/run-20210907_094306-1gii9ass/files/requirements.txt
ADDED
|
@@ -0,0 +1,293 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
absl-py==0.12.0
|
| 2 |
+
aiobotocore==1.2.2
|
| 3 |
+
aiohttp==3.7.4.post0
|
| 4 |
+
aioitertools==0.7.1
|
| 5 |
+
alabaster==0.7.12
|
| 6 |
+
antlr4-python3-runtime==4.8
|
| 7 |
+
apache-beam==2.28.0
|
| 8 |
+
apipkg==1.5
|
| 9 |
+
appdirs==1.4.4
|
| 10 |
+
argcomplete==1.12.3
|
| 11 |
+
arrow==1.0.3
|
| 12 |
+
astunparse==1.6.3
|
| 13 |
+
async-timeout==3.0.1
|
| 14 |
+
attrs==20.3.0
|
| 15 |
+
audioread==2.1.9
|
| 16 |
+
avro-python3==1.9.2.1
|
| 17 |
+
aws-sam-translator==1.35.0
|
| 18 |
+
aws-xray-sdk==2.7.0
|
| 19 |
+
babel==2.9.0
|
| 20 |
+
backcall==0.2.0
|
| 21 |
+
bcj-cffi==0.5.1
|
| 22 |
+
beautifulsoup4==4.9.3
|
| 23 |
+
bert-score==0.3.9
|
| 24 |
+
binaryornot==0.4.4
|
| 25 |
+
black==21.4b0
|
| 26 |
+
boto3==1.16.43
|
| 27 |
+
boto==2.49.0
|
| 28 |
+
botocore==1.19.52
|
| 29 |
+
bs4==0.0.1
|
| 30 |
+
cachetools==4.2.1
|
| 31 |
+
certifi==2020.12.5
|
| 32 |
+
cffi==1.14.5
|
| 33 |
+
cfn-lint==0.48.3
|
| 34 |
+
chardet==4.0.0
|
| 35 |
+
chex==0.0.6
|
| 36 |
+
click==7.1.2
|
| 37 |
+
cloud-tpu-client==0.10
|
| 38 |
+
cloud-tpu-profiler==2.4.0
|
| 39 |
+
commonmark==0.9.1
|
| 40 |
+
configparser==5.0.2
|
| 41 |
+
conllu==4.4
|
| 42 |
+
cookiecutter==1.7.2
|
| 43 |
+
crcmod==1.7
|
| 44 |
+
cryptography==3.4.7
|
| 45 |
+
cycler==0.10.0
|
| 46 |
+
cython==0.29.23
|
| 47 |
+
dataclasses==0.8
|
| 48 |
+
datasets==1.9.0
|
| 49 |
+
decorator==4.4.2
|
| 50 |
+
dill==0.3.1.1
|
| 51 |
+
dm-tree==0.1.6
|
| 52 |
+
docker-pycreds==0.4.0
|
| 53 |
+
docker==5.0.0
|
| 54 |
+
docopt==0.6.2
|
| 55 |
+
docutils==0.16
|
| 56 |
+
ecdsa==0.14.1
|
| 57 |
+
elasticsearch==7.12.0
|
| 58 |
+
entrypoints==0.3
|
| 59 |
+
et-xmlfile==1.1.0
|
| 60 |
+
execnet==1.8.0
|
| 61 |
+
fairseq==1.0.0a0+9825786
|
| 62 |
+
faiss-cpu==1.7.0
|
| 63 |
+
fastavro==1.4.0
|
| 64 |
+
fastbpe==0.1.0
|
| 65 |
+
fasteners==0.16
|
| 66 |
+
filelock==3.0.12
|
| 67 |
+
fire==0.4.0
|
| 68 |
+
flake8==3.7.9
|
| 69 |
+
flask-cors==3.0.10
|
| 70 |
+
flask==1.1.2
|
| 71 |
+
flatbuffers==1.12
|
| 72 |
+
flax==0.3.4
|
| 73 |
+
fsspec==2021.6.1
|
| 74 |
+
fugashi==1.1.0
|
| 75 |
+
future==0.18.2
|
| 76 |
+
gast==0.3.3
|
| 77 |
+
gcs-oauth2-boto-plugin==2.7
|
| 78 |
+
gitdb==4.0.7
|
| 79 |
+
gitpython==3.1.18
|
| 80 |
+
google-api-core==1.26.3
|
| 81 |
+
google-api-python-client==1.8.0
|
| 82 |
+
google-apitools==0.5.32
|
| 83 |
+
google-auth-httplib2==0.1.0
|
| 84 |
+
google-auth-oauthlib==0.4.4
|
| 85 |
+
google-auth==1.30.0
|
| 86 |
+
google-pasta==0.2.0
|
| 87 |
+
google-reauth==0.1.1
|
| 88 |
+
googleapis-common-protos==1.53.0
|
| 89 |
+
grpcio==1.32.0
|
| 90 |
+
gsutil==4.62
|
| 91 |
+
gviz-api==1.9.0
|
| 92 |
+
h5py==2.10.0
|
| 93 |
+
hdfs==2.6.0
|
| 94 |
+
httplib2==0.19.1
|
| 95 |
+
huggingface-hub==0.0.8
|
| 96 |
+
hydra-core==1.0.7
|
| 97 |
+
idna-ssl==1.1.0
|
| 98 |
+
idna==2.10
|
| 99 |
+
imagesize==1.2.0
|
| 100 |
+
importlib-metadata==4.0.1
|
| 101 |
+
importlib-resources==3.3.1
|
| 102 |
+
iniconfig==1.1.1
|
| 103 |
+
intel-openmp==2021.2.0
|
| 104 |
+
ipadic==1.0.0
|
| 105 |
+
ipdb==0.13.7
|
| 106 |
+
ipython-genutils==0.2.0
|
| 107 |
+
ipython==7.16.1
|
| 108 |
+
isort==5.8.0
|
| 109 |
+
itsdangerous==1.1.0
|
| 110 |
+
jax==0.2.17
|
| 111 |
+
jaxlib==0.1.68
|
| 112 |
+
jedi==0.17.2
|
| 113 |
+
jinja2-time==0.2.0
|
| 114 |
+
jinja2==2.11.3
|
| 115 |
+
jiwer==2.2.0
|
| 116 |
+
jmespath==0.10.0
|
| 117 |
+
joblib==1.0.1
|
| 118 |
+
jsondiff==1.3.0
|
| 119 |
+
jsonpatch==1.32
|
| 120 |
+
jsonpointer==2.1
|
| 121 |
+
jsonschema==3.2.0
|
| 122 |
+
junit-xml==1.9
|
| 123 |
+
keras-preprocessing==1.1.2
|
| 124 |
+
keras2onnx==1.7.0
|
| 125 |
+
kiwisolver==1.3.1
|
| 126 |
+
langdetect==1.0.8
|
| 127 |
+
librosa==0.8.1
|
| 128 |
+
libtpu-nightly==0.1.dev20210615
|
| 129 |
+
llvmlite==0.36.0
|
| 130 |
+
lxml==4.6.3
|
| 131 |
+
markdown==3.3.4
|
| 132 |
+
markupsafe==1.1.1
|
| 133 |
+
matplotlib==3.3.4
|
| 134 |
+
mccabe==0.6.1
|
| 135 |
+
mkl==2021.2.0
|
| 136 |
+
mock==2.0.0
|
| 137 |
+
monotonic==1.6
|
| 138 |
+
more-itertools==8.7.0
|
| 139 |
+
moto==2.0.4
|
| 140 |
+
msgpack==1.0.2
|
| 141 |
+
multidict==5.1.0
|
| 142 |
+
multiprocess==0.70.9
|
| 143 |
+
multivolumefile==0.2.2
|
| 144 |
+
mwparserfromhell==0.6
|
| 145 |
+
mypy-extensions==0.4.3
|
| 146 |
+
networkx==2.5.1
|
| 147 |
+
nltk==3.6.2
|
| 148 |
+
numba==0.53.1
|
| 149 |
+
numpy==1.19.5
|
| 150 |
+
oauth2client==4.1.3
|
| 151 |
+
oauthlib==3.1.0
|
| 152 |
+
omegaconf==2.0.6
|
| 153 |
+
onnx==1.9.0
|
| 154 |
+
onnxconverter-common==1.8.1
|
| 155 |
+
openpyxl==3.0.7
|
| 156 |
+
opt-einsum==3.3.0
|
| 157 |
+
optax==0.0.9
|
| 158 |
+
packaging==20.9
|
| 159 |
+
pandas==1.1.5
|
| 160 |
+
parameterized==0.8.1
|
| 161 |
+
parso==0.7.1
|
| 162 |
+
pathspec==0.8.1
|
| 163 |
+
pathtools==0.1.2
|
| 164 |
+
pbr==5.6.0
|
| 165 |
+
pexpect==4.8.0
|
| 166 |
+
pickleshare==0.7.5
|
| 167 |
+
pillow==8.2.0
|
| 168 |
+
pip==21.1
|
| 169 |
+
pkg-resources==0.0.0
|
| 170 |
+
plac==1.3.3
|
| 171 |
+
pluggy==0.13.1
|
| 172 |
+
pooch==1.4.0
|
| 173 |
+
portalocker==2.0.0
|
| 174 |
+
poyo==0.5.0
|
| 175 |
+
ppmd-cffi==0.4.2
|
| 176 |
+
promise==2.3
|
| 177 |
+
prompt-toolkit==3.0.18
|
| 178 |
+
protobuf==3.15.8
|
| 179 |
+
psutil==5.8.0
|
| 180 |
+
ptyprocess==0.7.0
|
| 181 |
+
py7zr==0.15.1
|
| 182 |
+
py==1.10.0
|
| 183 |
+
pyarrow==2.0.0
|
| 184 |
+
pyasn1-modules==0.2.8
|
| 185 |
+
pyasn1==0.4.8
|
| 186 |
+
pycodestyle==2.5.0
|
| 187 |
+
pycparser==2.20
|
| 188 |
+
pycryptodome==3.10.1
|
| 189 |
+
pydot==1.4.2
|
| 190 |
+
pyflakes==2.1.1
|
| 191 |
+
pygments==2.8.1
|
| 192 |
+
pymongo==3.11.3
|
| 193 |
+
pyopenssl==20.0.1
|
| 194 |
+
pyparsing==2.4.7
|
| 195 |
+
pyrsistent==0.17.3
|
| 196 |
+
pytest-forked==1.3.0
|
| 197 |
+
pytest-sugar==0.9.4
|
| 198 |
+
pytest-xdist==2.2.1
|
| 199 |
+
pytest==6.2.3
|
| 200 |
+
python-dateutil==2.8.1
|
| 201 |
+
python-jose==3.2.0
|
| 202 |
+
python-levenshtein==0.12.2
|
| 203 |
+
python-slugify==4.0.1
|
| 204 |
+
pytorch-lightning==1.1.2
|
| 205 |
+
pytorch-nlp==0.5.0
|
| 206 |
+
pytz==2021.1
|
| 207 |
+
pyu2f==0.1.5
|
| 208 |
+
pyyaml==5.4.1
|
| 209 |
+
pyzstd==0.14.4
|
| 210 |
+
rarfile==4.0
|
| 211 |
+
recommonmark==0.7.1
|
| 212 |
+
regex==2021.4.4
|
| 213 |
+
requests-file==1.5.1
|
| 214 |
+
requests-oauthlib==1.3.0
|
| 215 |
+
requests==2.25.1
|
| 216 |
+
resampy==0.2.2
|
| 217 |
+
responses==0.13.2
|
| 218 |
+
retry-decorator==1.1.1
|
| 219 |
+
rouge-score==0.0.4
|
| 220 |
+
rsa==4.7.2
|
| 221 |
+
s3fs==0.4.2
|
| 222 |
+
s3transfer==0.3.7
|
| 223 |
+
sacrebleu==1.5.1
|
| 224 |
+
sacremoses==0.0.45
|
| 225 |
+
scikit-learn==0.24.1
|
| 226 |
+
scipy==1.5.4
|
| 227 |
+
sentencepiece==0.1.91
|
| 228 |
+
sentry-sdk==1.3.1
|
| 229 |
+
seqeval==1.2.2
|
| 230 |
+
setuptools==56.0.0
|
| 231 |
+
shortuuid==1.0.1
|
| 232 |
+
six==1.15.0
|
| 233 |
+
sklearn==0.0
|
| 234 |
+
smmap==4.0.0
|
| 235 |
+
snowballstemmer==2.1.0
|
| 236 |
+
soundfile==0.10.3.post1
|
| 237 |
+
soupsieve==2.2.1
|
| 238 |
+
sphinx-copybutton==0.3.1
|
| 239 |
+
sphinx-markdown-tables==0.0.15
|
| 240 |
+
sphinx-rtd-theme==0.4.3
|
| 241 |
+
sphinx==3.2.1
|
| 242 |
+
sphinxcontrib-applehelp==1.0.2
|
| 243 |
+
sphinxcontrib-devhelp==1.0.2
|
| 244 |
+
sphinxcontrib-htmlhelp==1.0.3
|
| 245 |
+
sphinxcontrib-jsmath==1.0.1
|
| 246 |
+
sphinxcontrib-qthelp==1.0.3
|
| 247 |
+
sphinxcontrib-serializinghtml==1.1.4
|
| 248 |
+
sphinxext-opengraph==0.4.1
|
| 249 |
+
sshpubkeys==3.3.1
|
| 250 |
+
style==1.1.0
|
| 251 |
+
subprocess32==3.5.4
|
| 252 |
+
tbb==2021.2.0
|
| 253 |
+
tbp-nightly==2.5.0a20210511
|
| 254 |
+
tensorboard-data-server==0.6.0
|
| 255 |
+
tensorboard-plugin-wit==1.8.0
|
| 256 |
+
tensorboard==2.5.0
|
| 257 |
+
tensorflow-estimator==2.4.0
|
| 258 |
+
tensorflow==2.4.1
|
| 259 |
+
termcolor==1.1.0
|
| 260 |
+
text-unidecode==1.3
|
| 261 |
+
texttable==1.6.3
|
| 262 |
+
threadpoolctl==2.1.0
|
| 263 |
+
timeout-decorator==0.5.0
|
| 264 |
+
tldextract==3.1.0
|
| 265 |
+
tokenizers==0.10.2
|
| 266 |
+
toml==0.10.2
|
| 267 |
+
toolz==0.11.1
|
| 268 |
+
torch==1.9.0
|
| 269 |
+
torchaudio==0.8.1
|
| 270 |
+
torchvision==0.7.0a0+a6073f0
|
| 271 |
+
tqdm==4.49.0
|
| 272 |
+
traitlets==4.3.3
|
| 273 |
+
transformers==4.9.0.dev0
|
| 274 |
+
typed-ast==1.4.3
|
| 275 |
+
typing-extensions==3.7.4.3
|
| 276 |
+
unidic-lite==1.0.8
|
| 277 |
+
unidic==1.0.3
|
| 278 |
+
update==0.0.1
|
| 279 |
+
uritemplate==3.0.1
|
| 280 |
+
urllib3==1.26.4
|
| 281 |
+
wandb==0.12.1
|
| 282 |
+
wasabi==0.8.2
|
| 283 |
+
wcwidth==0.2.5
|
| 284 |
+
websocket-client==0.58.0
|
| 285 |
+
werkzeug==1.0.1
|
| 286 |
+
wget==3.2
|
| 287 |
+
wheel==0.36.2
|
| 288 |
+
wrapt==1.12.1
|
| 289 |
+
xmltodict==0.12.0
|
| 290 |
+
xxhash==2.0.2
|
| 291 |
+
yarl==1.6.3
|
| 292 |
+
zipp==3.4.1
|
| 293 |
+
zstandard==0.15.2
|
wandb/run-20210907_094306-1gii9ass/files/wandb-metadata.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"os": "Linux-5.4.0-1042-gcp-x86_64-with-Ubuntu-18.04-bionic",
|
| 3 |
+
"python": "3.6.9",
|
| 4 |
+
"heartbeatAt": "2021-09-07T09:43:08.936401",
|
| 5 |
+
"startedAt": "2021-09-07T09:43:06.315399",
|
| 6 |
+
"docker": null,
|
| 7 |
+
"cpu_count": 96,
|
| 8 |
+
"cuda": null,
|
| 9 |
+
"args": [
|
| 10 |
+
"--output_dir=./",
|
| 11 |
+
"--num_train_epochs=1000",
|
| 12 |
+
"--warmup_steps=32000",
|
| 13 |
+
"--dataset_name=patrickvonplaten/librispeech_local",
|
| 14 |
+
"--dataset_config_name=clean",
|
| 15 |
+
"--train_split_name=train",
|
| 16 |
+
"--per_device_train_batch_size=8",
|
| 17 |
+
"--per_device_eval_batch_size=8",
|
| 18 |
+
"--learning_rate=0.0005",
|
| 19 |
+
"--weight_decay=0.01",
|
| 20 |
+
"--model_name_or_path=./",
|
| 21 |
+
"--logging_steps=1",
|
| 22 |
+
"--max_duration_in_seconds=16.0",
|
| 23 |
+
"--adam_beta1=0.9",
|
| 24 |
+
"--adam_beta2=0.98",
|
| 25 |
+
"--adam_epsilon=1e-06"
|
| 26 |
+
],
|
| 27 |
+
"state": "running",
|
| 28 |
+
"program": "./run_wav2vec2_pretrain_flax.py",
|
| 29 |
+
"codePath": "run_wav2vec2_pretrain_flax.py",
|
| 30 |
+
"git": {
|
| 31 |
+
"remote": "https://huggingface.co/patrickvonplaten/wav2vec2_libri",
|
| 32 |
+
"commit": "365d5efbbfdc7c14d0dfcf152e1a1f1de74aa15d"
|
| 33 |
+
},
|
| 34 |
+
"email": "patrick@huggingface.co",
|
| 35 |
+
"root": "/home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri",
|
| 36 |
+
"host": "t1v-n-71556209-w-0",
|
| 37 |
+
"username": "patrick",
|
| 38 |
+
"executable": "/home/patrick/hf_flax_tpu/bin/python3"
|
| 39 |
+
}
|
wandb/run-20210907_094306-1gii9ass/files/wandb-summary.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{}
|
wandb/run-20210907_094306-1gii9ass/logs/debug-internal.log
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
2021-09-07 09:43:07,011 INFO MainThread:92771 [internal.py:wandb_internal():89] W&B internal server running at pid: 92771, started at: 2021-09-07 09:43:07.011628
|
| 2 |
+
2021-09-07 09:43:07,014 DEBUG HandlerThread:92771 [handler.py:handle_request():126] handle_request: check_version
|
| 3 |
+
2021-09-07 09:43:07,014 INFO WriterThread:92771 [datastore.py:open_for_write():77] open: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094306-1gii9ass/run-1gii9ass.wandb
|
| 4 |
+
2021-09-07 09:43:07,015 DEBUG SenderThread:92771 [sender.py:send():182] send: header
|
| 5 |
+
2021-09-07 09:43:07,015 DEBUG SenderThread:92771 [sender.py:send_request():196] send_request: check_version
|
| 6 |
+
2021-09-07 09:43:07,054 DEBUG SenderThread:92771 [sender.py:send():182] send: run
|
| 7 |
+
2021-09-07 09:43:07,217 INFO SenderThread:92771 [dir_watcher.py:__init__():169] watching files in: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094306-1gii9ass/files
|
| 8 |
+
2021-09-07 09:43:07,217 INFO SenderThread:92771 [sender.py:_start_run_threads():743] run started: 1gii9ass with start time 1631007786
|
| 9 |
+
2021-09-07 09:43:07,217 DEBUG SenderThread:92771 [sender.py:send():182] send: summary
|
| 10 |
+
2021-09-07 09:43:07,217 DEBUG HandlerThread:92771 [handler.py:handle_request():126] handle_request: run_start
|
| 11 |
+
2021-09-07 09:43:07,218 INFO SenderThread:92771 [sender.py:_save_file():873] saving file wandb-summary.json with policy end
|
| 12 |
+
2021-09-07 09:43:08,220 INFO Thread-8 :92771 [dir_watcher.py:_on_file_created():217] file/dir created: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094306-1gii9ass/files/wandb-summary.json
|
| 13 |
+
2021-09-07 09:43:08,936 DEBUG HandlerThread:92771 [meta.py:__init__():40] meta init
|
| 14 |
+
2021-09-07 09:43:08,936 DEBUG HandlerThread:92771 [meta.py:__init__():54] meta init done
|
| 15 |
+
2021-09-07 09:43:08,936 DEBUG HandlerThread:92771 [meta.py:probe():211] probe
|
| 16 |
+
2021-09-07 09:43:08,937 DEBUG HandlerThread:92771 [meta.py:_setup_git():201] setup git
|
| 17 |
+
2021-09-07 09:43:08,959 DEBUG HandlerThread:92771 [meta.py:_setup_git():208] setup git done
|
| 18 |
+
2021-09-07 09:43:08,959 DEBUG HandlerThread:92771 [meta.py:_save_pip():58] save pip
|
| 19 |
+
2021-09-07 09:43:08,960 DEBUG HandlerThread:92771 [meta.py:_save_pip():72] save pip done
|
| 20 |
+
2021-09-07 09:43:08,960 DEBUG HandlerThread:92771 [meta.py:probe():249] probe done
|
| 21 |
+
2021-09-07 09:43:08,963 DEBUG SenderThread:92771 [sender.py:send():182] send: files
|
| 22 |
+
2021-09-07 09:43:08,963 INFO SenderThread:92771 [sender.py:_save_file():873] saving file wandb-metadata.json with policy now
|
| 23 |
+
2021-09-07 09:43:08,972 DEBUG HandlerThread:92771 [handler.py:handle_request():126] handle_request: stop_status
|
| 24 |
+
2021-09-07 09:43:08,972 DEBUG SenderThread:92771 [sender.py:send_request():196] send_request: stop_status
|
| 25 |
+
2021-09-07 09:43:09,220 INFO Thread-8 :92771 [dir_watcher.py:_on_file_created():217] file/dir created: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094306-1gii9ass/files/output.log
|
| 26 |
+
2021-09-07 09:43:09,221 INFO Thread-8 :92771 [dir_watcher.py:_on_file_created():217] file/dir created: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094306-1gii9ass/files/requirements.txt
|
| 27 |
+
2021-09-07 09:43:09,221 INFO Thread-8 :92771 [dir_watcher.py:_on_file_created():217] file/dir created: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094306-1gii9ass/files/wandb-metadata.json
|
| 28 |
+
2021-09-07 09:43:09,435 INFO Thread-11 :92771 [upload_job.py:push():137] Uploaded file /tmp/tmp3z4hk3fswandb/3sa8u2xh-wandb-metadata.json
|
| 29 |
+
2021-09-07 09:43:11,221 INFO Thread-8 :92771 [dir_watcher.py:_on_file_modified():230] file/dir modified: /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094306-1gii9ass/files/output.log
|
wandb/run-20210907_094306-1gii9ass/logs/debug.log
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
2021-09-07 09:43:06,316 INFO MainThread:92593 [wandb_setup.py:_flush():69] setting env: {}
|
| 2 |
+
2021-09-07 09:43:06,316 INFO MainThread:92593 [wandb_setup.py:_flush():69] setting login settings: {}
|
| 3 |
+
2021-09-07 09:43:06,316 INFO MainThread:92593 [wandb_init.py:_log_setup():342] Logging user logs to /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094306-1gii9ass/logs/debug.log
|
| 4 |
+
2021-09-07 09:43:06,316 INFO MainThread:92593 [wandb_init.py:_log_setup():343] Logging internal logs to /home/patrick/wav2vec2_tpu_replicate/wav2vec2_libri/wandb/run-20210907_094306-1gii9ass/logs/debug-internal.log
|
| 5 |
+
2021-09-07 09:43:06,316 INFO MainThread:92593 [wandb_init.py:init():375] calling init triggers
|
| 6 |
+
2021-09-07 09:43:06,316 INFO MainThread:92593 [wandb_init.py:init():382] wandb.init called with sweep_config: {}
|
| 7 |
+
config: {}
|
| 8 |
+
2021-09-07 09:43:06,316 INFO MainThread:92593 [wandb_init.py:init():424] starting backend
|
| 9 |
+
2021-09-07 09:43:06,316 INFO MainThread:92593 [backend.py:_multiprocessing_setup():72] multiprocessing start_methods=fork,spawn,forkserver, using: spawn
|
| 10 |
+
2021-09-07 09:43:06,328 INFO MainThread:92593 [backend.py:ensure_launched():135] starting backend process...
|
| 11 |
+
2021-09-07 09:43:06,336 INFO MainThread:92593 [backend.py:ensure_launched():140] started backend process with pid: 92771
|
| 12 |
+
2021-09-07 09:43:06,337 INFO MainThread:92593 [wandb_init.py:init():429] backend started and connected
|
| 13 |
+
2021-09-07 09:43:06,339 INFO MainThread:92593 [wandb_init.py:init():477] updated telemetry
|
| 14 |
+
2021-09-07 09:43:06,340 INFO MainThread:92593 [wandb_init.py:init():500] communicating current version
|
| 15 |
+
2021-09-07 09:43:07,053 INFO MainThread:92593 [wandb_init.py:init():505] got version response
|
| 16 |
+
2021-09-07 09:43:07,053 INFO MainThread:92593 [wandb_init.py:init():513] communicating run to backend with 30 second timeout
|
| 17 |
+
2021-09-07 09:43:07,216 INFO MainThread:92593 [wandb_init.py:init():540] starting run threads in backend
|
| 18 |
+
2021-09-07 09:43:08,967 INFO MainThread:92593 [wandb_run.py:_console_start():1601] atexit reg
|
| 19 |
+
2021-09-07 09:43:08,967 INFO MainThread:92593 [wandb_run.py:_redirect():1475] redirect: SettingsConsole.REDIRECT
|
| 20 |
+
2021-09-07 09:43:08,969 INFO MainThread:92593 [wandb_run.py:_redirect():1480] Redirecting console.
|
| 21 |
+
2021-09-07 09:43:08,971 INFO MainThread:92593 [wandb_run.py:_redirect():1536] Redirects installed.
|
| 22 |
+
2021-09-07 09:43:08,971 INFO MainThread:92593 [wandb_init.py:init():565] run started, returning control to user process
|
wandb/run-20210907_094306-1gii9ass/run-1gii9ass.wandb
ADDED
|
File without changes
|