nipunsadvilkar commited on
Commit
41593c6
1 Parent(s): 749dddc

Saving weights and logs of step 500

Browse files
dummy/dummy_mr_train.csv ADDED
The diff for this file is too large to render. See raw diff
dummy/dummy_mr_validation.csv ADDED
The diff for this file is too large to render. See raw diff
events.out.tfevents.1625915366.t1v-n-112df4a9-w-0.54625.3.v2 ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4dd43ada80ff05b64bc410a794e4619c8614294acada493832cd76e0997eff1f
3
+ size 9069
flax_model.msgpack CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:76d55c57630984430801c3b6d5cc75703bd2a61ef6bb8f9d20f7c6150f2dfbd3
3
  size 498796983
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f6552dbdda3b1eba8c96bfd83fb06cb63770ea852b6779eefb7346da560de2c
3
  size 498796983
mr_clean_text.py ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import sys
2
+ import string
3
+ import regex as re
4
+ # import re
5
+
6
+ from datasets import load_dataset
7
+
8
+ split_type = sys.argv[1]
9
+
10
+ def clean_marathi_text(text):
11
+ clean_text = "".join([tok.group() for tok in re.finditer(r'[\u0900-\u097F\s]', text)])
12
+ clean_text = re.sub(r"\s+", " ", clean_text)
13
+ return clean_text
14
+
15
+ def clean_marathi_text2(text):
16
+ pattern1 = r'\P{Devanagari}+'
17
+ pattern2 = r'[\p{Devanagari}\s\.\!]+'
18
+ punct_rm = re.compile("[" + re.escape(string.punctuation) + "]")
19
+ # cleaned = re.sub(pattern1, "", text)
20
+
21
+ cleaned = "".join([tok.group() for tok in re.finditer(pattern2, text)])
22
+ cleaned = re.sub(r"[ ]+", " ", cleaned)
23
+ clean_puct_rm = re.sub(punct_rm, "", cleaned)
24
+ return cleaned, clean_puct_rm.strip()
25
+
26
+
27
+ mr_mc4 = load_dataset("mc4", "mr", split=split_type)
28
+
29
+ print(mr_mc4)
30
+
31
+ count = 0
32
+ with open(f"mr_{split_type}_clean2.txt", 'w', encoding="utf-8") as f:
33
+ for ind, each in enumerate(mr_mc4):
34
+ clean_text, only_punct = clean_marathi_text2(each["text"])
35
+ if only_punct:
36
+ count += 1
37
+ f.write(clean_text.strip())
38
+ f.write("\n\n")
39
+ print(f"{split_type} clean docs count {count} out of {len(mr_mc4)}")
run.log CHANGED
The diff for this file is too large to render. See raw diff
run.sh CHANGED
@@ -4,8 +4,8 @@ python run_mlm_flax.py \
4
  --model_type="roberta" \
5
  --config_name="./" \
6
  --tokenizer_name="./" \
7
- --dataset_name="oscar" \
8
- --dataset_config_name="unshuffled_deduplicated_als" \
9
  --max_seq_length="128" \
10
  --per_device_train_batch_size="4" \
11
  --per_device_eval_batch_size="4" \
@@ -17,4 +17,4 @@ python run_mlm_flax.py \
17
  --run_name hf-flax-robert-base-mr \
18
  --push_to_hub_model_id="flax-community/roberta-base-mr" \
19
  --push_to_hub_token=$HUB_TOKEN \
20
- --push_to_hub 2>&1 | tee run.log
4
  --model_type="roberta" \
5
  --config_name="./" \
6
  --tokenizer_name="./" \
7
+ --train_file="/home/nipunsadvilkar/mr_data/mr_train_df.csv" \
8
+ --validation_file="/home/nipunsadvilkar/mr_data/mr_validation_df.csv"\
9
  --max_seq_length="128" \
10
  --per_device_train_batch_size="4" \
11
  --per_device_eval_batch_size="4" \
17
  --run_name hf-flax-robert-base-mr \
18
  --push_to_hub_model_id="flax-community/roberta-base-mr" \
19
  --push_to_hub_token=$HUB_TOKEN \
20
+ --push_to_hub 2>&1 | tee run.log
run_mlm_flax.py CHANGED
@@ -457,12 +457,6 @@ if __name__ == "__main__":
457
  has_tensorboard = is_tensorboard_available()
458
  if has_tensorboard and jax.process_index() == 0:
459
  try:
460
- import wandb
461
- wandb.init(
462
- entity='nipunsadvilkar',
463
- project='hf-flax-robert-base-mr',
464
- sync_tensorboard=True
465
- )
466
  from flax.metrics.tensorboard import SummaryWriter
467
 
468
  summary_writer = SummaryWriter(log_dir=Path(training_args.output_dir))
457
  has_tensorboard = is_tensorboard_available()
458
  if has_tensorboard and jax.process_index() == 0:
459
  try:
 
 
 
 
 
 
460
  from flax.metrics.tensorboard import SummaryWriter
461
 
462
  summary_writer = SummaryWriter(log_dir=Path(training_args.output_dir))
test_mr_tokenizer.py CHANGED
@@ -5,4 +5,4 @@ tokenizer = Tokenizer.from_file("tokenizer.json")
5
  text = "गेल्या अनेक दिवसांपासून केंद्र सरकरा विरुद्ध ट्विटर इंडिया यांच्यामध्ये सरकारच्या नव्या मार्गदर्शक सूचना किंवा नियमावलीवरून वाद सुरू आहे."
6
 
7
  output = tokenizer.encode(text)
8
- print(tokenizer.decode(output.ids))
5
  text = "गेल्या अनेक दिवसांपासून केंद्र सरकरा विरुद्ध ट्विटर इंडिया यांच्यामध्ये सरकारच्या नव्या मार्गदर्शक सूचना किंवा नियमावलीवरून वाद सुरू आहे."
6
 
7
  output = tokenizer.encode(text)
8
+ print(tokenizer.decode(output.ids))
tokenizer.json CHANGED
The diff for this file is too large to render. See raw diff
tokens.py CHANGED
@@ -2,12 +2,14 @@
2
  from datasets import load_dataset
3
  from tokenizers import ByteLevelBPETokenizer
4
  # Load dataset
5
- dataset = load_dataset("oscar", "unshuffled_deduplicated_als", split="train")
6
  # Instantiate tokenizer
7
  tokenizer = ByteLevelBPETokenizer()
8
- def batch_iterator(batch_size=100_000):
 
9
  for i in range(0, len(dataset), batch_size):
10
  yield dataset["text"][i: i + batch_size]
 
11
  # Customized training
12
  tokenizer.train_from_iterator(batch_iterator(), vocab_size=50265, min_frequency=2, special_tokens=[
13
  "<s>",
2
  from datasets import load_dataset
3
  from tokenizers import ByteLevelBPETokenizer
4
  # Load dataset
5
+ dataset = load_dataset('csv', data_files={'train': ["/home/nipunsadvilkar/mr_data/mr_train_df.csv"], "validation": ["/home/nipunsadvilkar/mr_data/mr_validation_df.csv"]}, split="train")
6
  # Instantiate tokenizer
7
  tokenizer = ByteLevelBPETokenizer()
8
+
9
+ def batch_iterator(batch_size=1000):
10
  for i in range(0, len(dataset), batch_size):
11
  yield dataset["text"][i: i + batch_size]
12
+
13
  # Customized training
14
  tokenizer.train_from_iterator(batch_iterator(), vocab_size=50265, min_frequency=2, special_tokens=[
15
  "<s>",
wandb/run-20210709_132941-xrzp5klf/files/config.yaml CHANGED
@@ -13,6 +13,9 @@ _wandb:
13
  1:
14
  - 3
15
  - 11
 
 
 
16
  4: 3.8.10
17
  5: 0.10.33
18
  6: 4.9.0.dev0
13
  1:
14
  - 3
15
  - 11
16
+ 2:
17
+ - 3
18
+ - 11
19
  4: 3.8.10
20
  5: 0.10.33
21
  6: 4.9.0.dev0
wandb/run-20210709_132941-xrzp5klf/files/output.log CHANGED
@@ -32,3 +32,7 @@ Step... (500 | Loss: 8.205772399902344, Acc: 0.0773010179400444): 88%|███
32
  Training...: 3%|███▍ | 4/142 [00:00<00:03, 35.60it/s]
33
  Evaluating ...: 0%| | 0/10 [00:00<?, ?it/s]
34
  git-lfs/2.9.2 (GitHub; linux amd64; go 1.13.5)████████████████████████████████████████████████████████████████████████▌ | 8/10 [00:00<00:00, 76.30it/s]
 
 
 
 
32
  Training...: 3%|███▍ | 4/142 [00:00<00:03, 35.60it/s]
33
  Evaluating ...: 0%| | 0/10 [00:00<?, ?it/s]
34
  git-lfs/2.9.2 (GitHub; linux amd64; go 1.13.5)████████████████████████████████████████████████████████████████████████▌ | 8/10 [00:00<00:00, 76.30it/s]
35
+ [13:31:54] - DEBUG - huggingface_hub.repository - [Repository] is a valid git repo
36
+ [13:32:05] - INFO - huggingface_hub.repository - Uploading LFS objects: 100% (2/2), 499 MB | 0 B/s, done.
37
+
38
+ Step... (1000 | Loss: 7.925442218780518, Acc: 0.09575153142213821): 100%|███████████████████████████████████████████████████████████████████████| 8/8 [02:21<00:00, 17.68s/it]
wandb/run-20210709_132941-xrzp5klf/files/wandb-summary.json CHANGED
@@ -1 +1 @@
1
- {"global_step": 1000, "_timestamp": 1625837513.455174, "train_time": 4.0346198081970215, "train_learning_rate": 0.0003000000142492354, "_step": 156, "train_loss": 7.2498674392700195, "eval_accuracy": 0.0773010179400444, "eval_loss": 8.205772399902344}
1
+ {"global_step": 1000, "_timestamp": 1625837513.610818, "train_time": 4.0346198081970215, "train_learning_rate": 0.0003000000142492354, "_step": 157, "train_loss": 7.807257652282715, "eval_accuracy": 0.09575153142213821, "eval_loss": 7.925442218780518}
wandb/run-20210709_132941-xrzp5klf/logs/debug-internal.log CHANGED
@@ -562,3 +562,113 @@
562
  2021-07-09 13:31:56,216 INFO Thread-8 :41762 [dir_watcher.py:_on_file_modified():229] file/dir modified: /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files/output.log
563
  2021-07-09 13:31:58,588 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: stop_status
564
  2021-07-09 13:31:58,589 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: stop_status
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
562
  2021-07-09 13:31:56,216 INFO Thread-8 :41762 [dir_watcher.py:_on_file_modified():229] file/dir modified: /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files/output.log
563
  2021-07-09 13:31:58,588 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: stop_status
564
  2021-07-09 13:31:58,589 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: stop_status
565
+ 2021-07-09 13:32:06,221 INFO Thread-8 :41762 [dir_watcher.py:_on_file_modified():229] file/dir modified: /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files/output.log
566
+ 2021-07-09 13:32:08,222 INFO Thread-8 :41762 [dir_watcher.py:_on_file_modified():229] file/dir modified: /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files/output.log
567
+ 2021-07-09 13:32:10,223 INFO Thread-8 :41762 [dir_watcher.py:_on_file_modified():229] file/dir modified: /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files/output.log
568
+ 2021-07-09 13:32:11,569 DEBUG SenderThread:41762 [sender.py:send():179] send: stats
569
+ 2021-07-09 13:32:11,972 DEBUG SenderThread:41762 [sender.py:send():179] send: telemetry
570
+ 2021-07-09 13:32:11,972 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: poll_exit
571
+ 2021-07-09 13:32:11,972 DEBUG SenderThread:41762 [sender.py:send():179] send: exit
572
+ 2021-07-09 13:32:11,973 INFO SenderThread:41762 [sender.py:send_exit():287] handling exit code: 0
573
+ 2021-07-09 13:32:11,973 INFO SenderThread:41762 [sender.py:send_exit():295] send defer
574
+ 2021-07-09 13:32:11,973 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: poll_exit
575
+ 2021-07-09 13:32:11,974 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: defer
576
+ 2021-07-09 13:32:11,974 INFO HandlerThread:41762 [handler.py:handle_request_defer():141] handle defer: 0
577
+ 2021-07-09 13:32:11,974 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: defer
578
+ 2021-07-09 13:32:11,974 INFO SenderThread:41762 [sender.py:send_request_defer():304] handle sender defer: 0
579
+ 2021-07-09 13:32:11,974 INFO SenderThread:41762 [sender.py:transition_state():308] send defer: 1
580
+ 2021-07-09 13:32:11,974 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: defer
581
+ 2021-07-09 13:32:11,974 INFO HandlerThread:41762 [handler.py:handle_request_defer():141] handle defer: 1
582
+ 2021-07-09 13:32:12,071 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: defer
583
+ 2021-07-09 13:32:12,071 INFO SenderThread:41762 [sender.py:send_request_defer():304] handle sender defer: 1
584
+ 2021-07-09 13:32:12,071 INFO SenderThread:41762 [sender.py:transition_state():308] send defer: 2
585
+ 2021-07-09 13:32:12,071 DEBUG SenderThread:41762 [sender.py:send():179] send: stats
586
+ 2021-07-09 13:32:12,072 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: defer
587
+ 2021-07-09 13:32:12,072 INFO HandlerThread:41762 [handler.py:handle_request_defer():141] handle defer: 2
588
+ 2021-07-09 13:32:12,224 INFO Thread-8 :41762 [dir_watcher.py:_on_file_modified():229] file/dir modified: /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files/output.log
589
+ 2021-07-09 13:32:13,225 INFO Thread-8 :41762 [dir_watcher.py:_on_file_modified():229] file/dir modified: /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files/config.yaml
590
+ 2021-07-09 13:32:18,572 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: poll_exit
591
+ 2021-07-09 13:32:18,572 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: poll_exit
592
+ 2021-07-09 13:32:18,573 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: defer
593
+ 2021-07-09 13:32:18,573 INFO SenderThread:41762 [sender.py:send_request_defer():304] handle sender defer: 2
594
+ 2021-07-09 13:32:18,573 INFO SenderThread:41762 [sender.py:transition_state():308] send defer: 3
595
+ 2021-07-09 13:32:18,573 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: poll_exit
596
+ 2021-07-09 13:32:18,573 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: poll_exit
597
+ 2021-07-09 13:32:18,574 DEBUG SenderThread:41762 [sender.py:send():179] send: history
598
+ 2021-07-09 13:32:18,574 DEBUG SenderThread:41762 [sender.py:send():179] send: summary
599
+ 2021-07-09 13:32:18,576 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: defer
600
+ 2021-07-09 13:32:18,576 INFO HandlerThread:41762 [handler.py:handle_request_defer():141] handle defer: 3
601
+ 2021-07-09 13:32:18,577 INFO SenderThread:41762 [sender.py:_save_file():841] saving file wandb-summary.json with policy end
602
+ 2021-07-09 13:32:18,577 DEBUG SenderThread:41762 [sender.py:send():179] send: summary
603
+ 2021-07-09 13:32:18,578 INFO SenderThread:41762 [sender.py:_save_file():841] saving file wandb-summary.json with policy end
604
+ 2021-07-09 13:32:18,578 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: defer
605
+ 2021-07-09 13:32:18,578 INFO SenderThread:41762 [sender.py:send_request_defer():304] handle sender defer: 3
606
+ 2021-07-09 13:32:18,578 INFO SenderThread:41762 [sender.py:transition_state():308] send defer: 4
607
+ 2021-07-09 13:32:18,578 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: defer
608
+ 2021-07-09 13:32:18,578 INFO HandlerThread:41762 [handler.py:handle_request_defer():141] handle defer: 4
609
+ 2021-07-09 13:32:18,579 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: defer
610
+ 2021-07-09 13:32:18,579 INFO SenderThread:41762 [sender.py:send_request_defer():304] handle sender defer: 4
611
+ 2021-07-09 13:32:18,579 INFO SenderThread:41762 [sender.py:transition_state():308] send defer: 5
612
+ 2021-07-09 13:32:18,579 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: defer
613
+ 2021-07-09 13:32:18,579 INFO HandlerThread:41762 [handler.py:handle_request_defer():141] handle defer: 5
614
+ 2021-07-09 13:32:18,579 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: defer
615
+ 2021-07-09 13:32:18,579 INFO SenderThread:41762 [sender.py:send_request_defer():304] handle sender defer: 5
616
+ 2021-07-09 13:32:18,579 INFO SenderThread:41762 [dir_watcher.py:finish():282] shutting down directory watcher
617
+ 2021-07-09 13:32:18,678 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: poll_exit
618
+ 2021-07-09 13:32:19,227 INFO SenderThread:41762 [dir_watcher.py:_on_file_modified():229] file/dir modified: /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files/wandb-summary.json
619
+ 2021-07-09 13:32:19,227 INFO SenderThread:41762 [dir_watcher.py:finish():312] scan: /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files
620
+ 2021-07-09 13:32:19,227 INFO SenderThread:41762 [dir_watcher.py:finish():318] scan save: /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files/requirements.txt requirements.txt
621
+ 2021-07-09 13:32:19,228 INFO SenderThread:41762 [dir_watcher.py:finish():318] scan save: /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files/events.out.tfevents.1625837383.t1v-n-112df4a9-w-0.40707.3.v2 events.out.tfevents.1625837383.t1v-n-112df4a9-w-0.40707.3.v2
622
+ 2021-07-09 13:32:19,228 INFO SenderThread:41762 [dir_watcher.py:finish():318] scan save: /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files/output.log output.log
623
+ 2021-07-09 13:32:19,228 INFO SenderThread:41762 [dir_watcher.py:finish():318] scan save: /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files/wandb-metadata.json wandb-metadata.json
624
+ 2021-07-09 13:32:19,228 INFO SenderThread:41762 [dir_watcher.py:finish():318] scan save: /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files/config.yaml config.yaml
625
+ 2021-07-09 13:32:19,229 INFO SenderThread:41762 [dir_watcher.py:finish():318] scan save: /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files/wandb-summary.json wandb-summary.json
626
+ 2021-07-09 13:32:19,229 INFO SenderThread:41762 [sender.py:transition_state():308] send defer: 6
627
+ 2021-07-09 13:32:19,229 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: poll_exit
628
+ 2021-07-09 13:32:19,233 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: defer
629
+ 2021-07-09 13:32:19,233 INFO HandlerThread:41762 [handler.py:handle_request_defer():141] handle defer: 6
630
+ 2021-07-09 13:32:19,233 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: defer
631
+ 2021-07-09 13:32:19,233 INFO SenderThread:41762 [sender.py:send_request_defer():304] handle sender defer: 6
632
+ 2021-07-09 13:32:19,233 INFO SenderThread:41762 [file_pusher.py:finish():177] shutting down file pusher
633
+ 2021-07-09 13:32:19,331 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: poll_exit
634
+ 2021-07-09 13:32:19,331 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: poll_exit
635
+ 2021-07-09 13:32:19,433 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: poll_exit
636
+ 2021-07-09 13:32:19,433 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: poll_exit
637
+ 2021-07-09 13:32:19,444 INFO Thread-19 :41762 [upload_job.py:push():137] Uploaded file /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files/config.yaml
638
+ 2021-07-09 13:32:19,448 INFO Thread-18 :41762 [upload_job.py:push():137] Uploaded file /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files/output.log
639
+ 2021-07-09 13:32:19,449 INFO Thread-16 :41762 [upload_job.py:push():137] Uploaded file /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files/requirements.txt
640
+ 2021-07-09 13:32:19,460 INFO Thread-17 :41762 [upload_job.py:push():137] Uploaded file /tmp/tmp2vrml8zwwandb/1110a0ll-events.out.tfevents.1625837383.t1v-n-112df4a9-w-0.40707.3.v2
641
+ 2021-07-09 13:32:19,462 INFO Thread-20 :41762 [upload_job.py:push():137] Uploaded file /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/files/wandb-summary.json
642
+ 2021-07-09 13:32:19,535 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: poll_exit
643
+ 2021-07-09 13:32:19,535 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: poll_exit
644
+ 2021-07-09 13:32:19,636 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: poll_exit
645
+ 2021-07-09 13:32:19,637 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: poll_exit
646
+ 2021-07-09 13:32:19,663 INFO Thread-7 :41762 [sender.py:transition_state():308] send defer: 7
647
+ 2021-07-09 13:32:19,663 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: defer
648
+ 2021-07-09 13:32:19,663 INFO HandlerThread:41762 [handler.py:handle_request_defer():141] handle defer: 7
649
+ 2021-07-09 13:32:19,664 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: defer
650
+ 2021-07-09 13:32:19,664 INFO SenderThread:41762 [sender.py:send_request_defer():304] handle sender defer: 7
651
+ 2021-07-09 13:32:19,711 INFO SenderThread:41762 [sender.py:transition_state():308] send defer: 8
652
+ 2021-07-09 13:32:19,712 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: defer
653
+ 2021-07-09 13:32:19,712 INFO HandlerThread:41762 [handler.py:handle_request_defer():141] handle defer: 8
654
+ 2021-07-09 13:32:19,712 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: defer
655
+ 2021-07-09 13:32:19,712 INFO SenderThread:41762 [sender.py:send_request_defer():304] handle sender defer: 8
656
+ 2021-07-09 13:32:19,712 INFO SenderThread:41762 [sender.py:transition_state():308] send defer: 9
657
+ 2021-07-09 13:32:19,713 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: defer
658
+ 2021-07-09 13:32:19,713 INFO HandlerThread:41762 [handler.py:handle_request_defer():141] handle defer: 9
659
+ 2021-07-09 13:32:19,713 DEBUG SenderThread:41762 [sender.py:send():179] send: final
660
+ 2021-07-09 13:32:19,713 DEBUG SenderThread:41762 [sender.py:send():179] send: footer
661
+ 2021-07-09 13:32:19,713 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: defer
662
+ 2021-07-09 13:32:19,713 INFO SenderThread:41762 [sender.py:send_request_defer():304] handle sender defer: 9
663
+ 2021-07-09 13:32:19,738 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: poll_exit
664
+ 2021-07-09 13:32:19,739 DEBUG SenderThread:41762 [sender.py:send_request():193] send_request: poll_exit
665
+ 2021-07-09 13:32:19,739 INFO SenderThread:41762 [file_pusher.py:join():182] waiting for file pusher
666
+ 2021-07-09 13:32:19,740 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: get_summary
667
+ 2021-07-09 13:32:19,741 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: sampled_history
668
+ 2021-07-09 13:32:19,743 DEBUG HandlerThread:41762 [handler.py:handle_request():124] handle_request: shutdown
669
+ 2021-07-09 13:32:19,743 INFO HandlerThread:41762 [handler.py:finish():638] shutting down handler
670
+ 2021-07-09 13:32:20,713 INFO WriterThread:41762 [datastore.py:close():288] close: /home/nipunsadvilkar/sample/roberta-base-mr/wandb/run-20210709_132941-xrzp5klf/run-xrzp5klf.wandb
671
+ 2021-07-09 13:32:20,739 INFO SenderThread:41762 [sender.py:finish():945] shutting down sender
672
+ 2021-07-09 13:32:20,740 INFO SenderThread:41762 [file_pusher.py:finish():177] shutting down file pusher
673
+ 2021-07-09 13:32:20,740 INFO SenderThread:41762 [file_pusher.py:join():182] waiting for file pusher
674
+ 2021-07-09 13:32:20,742 INFO MainThread:41762 [internal.py:handle_exit():78] Internal process exited
wandb/run-20210709_132941-xrzp5klf/logs/debug.log CHANGED
@@ -21,3 +21,84 @@ config: {}
21
  2021-07-09 13:29:43,218 INFO MainThread:40707 [wandb_run.py:_redirect():1558] Redirects installed.
22
  2021-07-09 13:29:43,218 INFO MainThread:40707 [wandb_init.py:init():554] run started, returning control to user process
23
  2021-07-09 13:29:43,276 INFO MainThread:40707 [wandb_run.py:_tensorboard_callback():943] tensorboard callback: ., None
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  2021-07-09 13:29:43,218 INFO MainThread:40707 [wandb_run.py:_redirect():1558] Redirects installed.
22
  2021-07-09 13:29:43,218 INFO MainThread:40707 [wandb_init.py:init():554] run started, returning control to user process
23
  2021-07-09 13:29:43,276 INFO MainThread:40707 [wandb_run.py:_tensorboard_callback():943] tensorboard callback: ., None
24
+ 2021-07-09 13:32:09,325 INFO MainThread:40707 [wandb_run.py:_atexit_cleanup():1593] got exitcode: 0
25
+ 2021-07-09 13:32:09,325 INFO MainThread:40707 [wandb_run.py:_restore():1565] restore
26
+ 2021-07-09 13:32:11,974 INFO MainThread:40707 [wandb_run.py:_wait_for_finish():1715] got exit ret: file_counts {
27
+ wandb_count: 1
28
+ other_count: 1
29
+ }
30
+ pusher_stats {
31
+ uploaded_bytes: 12680
32
+ total_bytes: 12680
33
+ }
34
+
35
+ 2021-07-09 13:32:17,075 INFO MainThread:40707 [wandb_run.py:_wait_for_finish():1715] got exit ret: None
36
+ 2021-07-09 13:32:18,577 INFO MainThread:40707 [wandb_run.py:_wait_for_finish():1715] got exit ret: file_counts {
37
+ wandb_count: 1
38
+ other_count: 1
39
+ }
40
+ pusher_stats {
41
+ uploaded_bytes: 12680
42
+ total_bytes: 12680
43
+ }
44
+
45
+ 2021-07-09 13:32:19,230 INFO MainThread:40707 [wandb_run.py:_wait_for_finish():1715] got exit ret: file_counts {
46
+ wandb_count: 2
47
+ other_count: 1
48
+ }
49
+ pusher_stats {
50
+ uploaded_bytes: 12680
51
+ total_bytes: 14613
52
+ }
53
+
54
+ 2021-07-09 13:32:19,332 INFO MainThread:40707 [wandb_run.py:_wait_for_finish():1715] got exit ret: file_counts {
55
+ wandb_count: 5
56
+ other_count: 1
57
+ }
58
+ pusher_stats {
59
+ uploaded_bytes: 21518
60
+ total_bytes: 21518
61
+ }
62
+
63
+ 2021-07-09 13:32:19,434 INFO MainThread:40707 [wandb_run.py:_wait_for_finish():1715] got exit ret: file_counts {
64
+ wandb_count: 5
65
+ other_count: 1
66
+ }
67
+ pusher_stats {
68
+ uploaded_bytes: 21518
69
+ total_bytes: 21518
70
+ }
71
+
72
+ 2021-07-09 13:32:19,536 INFO MainThread:40707 [wandb_run.py:_wait_for_finish():1715] got exit ret: file_counts {
73
+ wandb_count: 5
74
+ other_count: 1
75
+ }
76
+ pusher_stats {
77
+ uploaded_bytes: 21518
78
+ total_bytes: 21518
79
+ }
80
+
81
+ 2021-07-09 13:32:19,637 INFO MainThread:40707 [wandb_run.py:_wait_for_finish():1715] got exit ret: file_counts {
82
+ wandb_count: 5
83
+ other_count: 1
84
+ }
85
+ pusher_stats {
86
+ uploaded_bytes: 21518
87
+ total_bytes: 21518
88
+ }
89
+
90
+ 2021-07-09 13:32:19,740 INFO MainThread:40707 [wandb_run.py:_wait_for_finish():1715] got exit ret: done: true
91
+ exit_result {
92
+ }
93
+ file_counts {
94
+ wandb_count: 5
95
+ other_count: 1
96
+ }
97
+ pusher_stats {
98
+ uploaded_bytes: 21518
99
+ total_bytes: 21518
100
+ }
101
+
102
+ 2021-07-09 13:32:20,981 INFO MainThread:40707 [wandb_run.py:_show_summary():1870] rendering summary
103
+ 2021-07-09 13:32:20,982 INFO MainThread:40707 [wandb_run.py:_show_history():1908] rendering history
104
+ 2021-07-09 13:32:20,982 INFO MainThread:40707 [wandb_run.py:_show_files():1937] logging synced files
wandb/run-20210709_132941-xrzp5klf/run-xrzp5klf.wandb CHANGED
Binary files a/wandb/run-20210709_132941-xrzp5klf/run-xrzp5klf.wandb and b/wandb/run-20210709_132941-xrzp5klf/run-xrzp5klf.wandb differ